Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
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 | |||
60 |