| 1 | <?php |
||
| 17 | class Extractor extends Module |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Constructor |
||
| 22 | */ |
||
| 23 | public function __construct() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Implements hook "route.list" |
||
| 30 | * @param array $routes |
||
| 31 | */ |
||
| 32 | public function hookRouteList(array &$routes) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Implements hook "job.handlers" |
||
| 44 | * @param array $handlers |
||
| 45 | */ |
||
| 46 | public function hookJobHandlers(array &$handlers) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Implements hook "cron" |
||
| 57 | */ |
||
| 58 | public function hookCron() |
||
| 67 | |||
| 68 | } |
||
| 69 |