PatchBot/modules/AdobeReader.php

15 lines
446 B
PHP

<?php
class AdobeReader extends PatchBase {
function __construct() {
parent::__construct('Adobe', 'Acrobat Reader', 'https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html');
$this->patch->setBranch('DC');
}
function check() : bool {
if ($this->fetch('https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html'))
return $this->parse('/rel="next" title="([\d\.]+)/');
return false;
}
}
?>