I have 2 controller controllers placed in my administration module which are:
- modules/administration/controllers/Administration.php
- modules/administration/controllers/Customers.php
The problem i have is when i want to display customer details in the admin view via:
echo modules::run('administration/customers/view_all');
I get nothing of course it looks as if codeigniter is looking for a (customers) method inside the administration controller. Has anyone else encountered this issue and knows how to resolve it?