| 1 | <?php |
||
| 17 | class Currency extends Module |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Constructor |
||
| 22 | */ |
||
| 23 | public function __construct() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Implements hook "module.install.before" |
||
| 30 | */ |
||
| 31 | public function hookModuleInstallBefore(&$result) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Implements hook "route.list" |
||
| 40 | * @param array $routes |
||
| 41 | */ |
||
| 42 | public function hookRouteList(array &$routes) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Implements hook "cron" |
||
| 55 | */ |
||
| 56 | public function hookCron() |
||
| 67 | |||
| 68 | } |
||
| 69 |