17 lines
429 B
PHP
17 lines
429 B
PHP
<?php
|
|
|
|
class MikroTikRouterOS6LTS extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('MikroTik', 'RouterOS', 'https://mikrotik.com/download');
|
|
$this->patch->setBranch('v6 Long-term');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://mikrotik.com/download')) {
|
|
$this->str_crop('id="routeros6"', '</thead>');
|
|
return $this->parse('/<th>([\d\.]+) Long-[Tt]erm<\/th>/');
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|