1 | <?php |
||
17 | class Export 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) |
||
51 | |||
52 | /** |
||
53 | * Implements hook "cron" |
||
54 | */ |
||
55 | public function hookCron() |
||
64 | |||
65 | /** |
||
66 | * Implements hook "job.handlers" |
||
67 | * @param array $handlers |
||
68 | */ |
||
69 | public function hookJobHandlers(array &$handlers) |
||
77 | |||
78 | /** |
||
79 | * Implements hook "user.role.permissions" |
||
80 | * @param array $permissions |
||
81 | */ |
||
82 | public function hookUserRolePermissions(array &$permissions) |
||
86 | |||
87 | } |
||
88 |