array ( 0 => '/home/me/git/fuel/fuel/app/', 1 => '/home/me/git/fuel/fuel/core/', )...which is expected. Enabling ORM in the 'Always Load' section,
'always_load' => array( 'packages' => array( 'orm', ...produces this result...
array ( 0 => '/home/me/git/fuel/fuel/app/', 1 => '/home/me/git/fuel/fuel/packages/orm/', 2 => '/home/me/git/fuel/fuel/core/', )...which is also expected. So far, so good. Now, enabling a specific module in the config file...
'module_paths' => array( APPPATH.'modules'.DS ), ... 'always_load' => array( 'modules' => array('module01'), ...produces this result...
array ( 0 => '/home/me/git/fuel/fuel/app/', 1 => '/home/me/git/fuel/fuel/packages/orm/', 2 => '/home/me/git/fuel/fuel/core/', )...which I thought would have included the module's path as indice #0. Am I not getting it (again)?
View::factory('admin/index');Can you tell me which view is loaded? No. It will depend on if modules are loaded, which are loaded, and in which sequence. Nightmare guaranteed!
It looks like you're new here. If you want to get involved, click one of these buttons!