null, 'Role/data_acquirer' => null, 'Role/accounting' => null, 'Role/database_manager' => null, 'Role/sales' => null, 'Role/data_analyst' => 'Role/data_acquirer, Role/database_manager', 'Role/reports' => 'Role/data_analyst', // allow inherited roles to be defined as an array or comma separated list 'Role/manager' => array( 'Role/accounting', 'Role/sales', ), 'Role/accounting_manager' => 'Role/accounting', // managers 'User/hardy' => 'Role/accounting_manager, Role/reports', 'User/stan' => 'Role/manager', // accountants 'User/peter' => 'Role/accounting', 'User/jeff' => 'Role/accounting', // admins 'User/jan' => 'Role/admin', // database 'User/db_manager_1' => 'Role/database_manager', 'User/db_manager_2' => 'Role/database_manager', ); //------------------------------------- // Rules //------------------------------------- $config['rules']['allow'] = array( '/*' => 'Role/admin', '/controllers/*/manager_*' => 'Role/manager', '/controllers/reports/*' => 'Role/sales', '/controllers/invoices/*' => 'Role/accounting', '/controllers/invoices/edit' => 'User/db_manager_2', '/controllers/db/*' => 'Role/database_manager', '/controllers/*/(add|edit|publish)' => 'User/stan', '/controllers/users/dashboard' => 'Role/default', // test for case insensitivity 'controllers/Forms/NEW' => 'Role/data_acquirer', ); $config['rules']['deny'] = array( // accountants and sales should not delete anything '/controllers/*/delete' => array( 'Role/sales', 'Role/accounting' ), '/controllers/db/drop' => 'User/db_manager_2', );