| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function hookRouteList(array &$routes) |
||
| 33 | { |
||
| 34 | // Module settings page |
||
| 35 | $routes['admin/module/settings/zopim'] = array( |
||
| 36 | 'access' => 'module_edit', |
||
| 37 | 'handlers' => array( |
||
| 38 | 'controller' => array('gplcart\\modules\\zopim\\controllers\\Settings', 'editSettings') |
||
| 39 | ) |
||
| 40 | ); |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Implements hook "construct.controller.frontend" |
||
| 45 | * @param \gplcart\core\controllers\frontend\Controller $controller |
||
| 46 | */ |
||
| 47 | public function hookConstructControllerFrontend($controller) |
||
| 48 | { |
||
| 60 |