| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function hookRouteList(array &$routes) |
||
| 43 | { |
||
| 44 | // Module settings page |
||
| 45 | $routes['admin/module/settings/currency'] = array( |
||
| 46 | 'access' => 'module_edit', |
||
| 47 | 'handlers' => array( |
||
| 48 | 'controller' => array('gplcart\\modules\\currency\\controllers\\Settings', 'editSettings') |
||
| 49 | ) |
||
| 50 | ); |
||
| 51 | } |
||
| 52 | |||
| 69 |