1 | <?php |
||
17 | class Import extends Module |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Constructor |
||
22 | */ |
||
23 | public function __construct() |
||
27 | |||
28 | /** |
||
29 | * Implements hook "route.list" |
||
30 | * @param mixed $routes |
||
31 | */ |
||
32 | public function hookRouteList(&$routes) |
||
51 | |||
52 | /** |
||
53 | * Implements hook "hook.cron" |
||
54 | */ |
||
55 | public function hookCron() |
||
64 | |||
65 | /** |
||
66 | * Implements hook "user.role.permissions" |
||
67 | * @param array $permissions |
||
68 | */ |
||
69 | public function hookUserRolePermissions(array &$permissions) |
||
73 | |||
74 | /** |
||
75 | * Implements hook "job.handlers" |
||
76 | * @param mixed $handlers |
||
77 | */ |
||
78 | public function hookJobHandlers(array &$handlers) |
||
86 | |||
87 | } |
||
88 |