users/admin/users/settings
admin/users/settingsThe files are placed in the following directory:
modules/users/classes/controller/adminIn this directory are two files: * users.php * settings.php
<?php namespace Users; class Controller_Admin_Users extends \Controller_Admin {settings.php
<?php namespace Users; class Controller_Admin_Settings extends \Controller_Admin {The config/routes.php is the following
<?php return array( '_root_' => 'main/index', // The default route '_404_' => 'main/404', // The main 404 route 'login' => 'users/login', 'logout' => 'users/logout', 'register' => 'users/register', 'confirm/(:any)' => 'users/confirm/$1', 'admin' => 'main/admin/main', 'admin/(:segment)' => '$1/admin/$1', 'admin/(:segment)/(:any)' => '$1/admin/$1/$2', 'admin/(:segment)/(:any)/(:any)' => '$1/admin/$1/$2/$3', 'admin/(:segment)/(:any)/(:any)/(:any)' => '$1/admin/$1/$2/$3/$4' );I'm a bit confused about this, because it should work, the second admin line is for me the same as in the working url.
'admin/(:segment)/settings' => '$1/admin/settings',And it works.... HOLY!
logger('Info', 'DEBUG: we are now here, var = '.$var);
It looks like you're new here. If you want to get involved, click one of these buttons!