Welcome Guest, Not a member yet? Register   Sign In
Loading views from some other folder
#6

[eluser]CroNiX[/eluser]
you can extend the CI_Loader and change your view path where it defaults to the APPPATH.'views/':
Code:
function CI_Loader()
{    
    $this->_ci_is_php5 = (floor(phpversion()) >= 5) ? TRUE : FALSE;
    $this->_ci_view_path = APPPATH.'views/';
    $this->_ci_ob_level  = ob_get_level();
            
    log_message('debug', "Loader Class Initialized");
}
Haven't tried it but looks like its all you would need to do.


Messages In This Thread
Loading views from some other folder - by El Forum - 04-08-2011, 01:30 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:30 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:37 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:40 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:44 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:49 AM
Loading views from some other folder - by El Forum - 04-08-2011, 11:54 AM
Loading views from some other folder - by El Forum - 04-08-2011, 12:05 PM
Loading views from some other folder - by El Forum - 04-08-2011, 12:07 PM



Theme © iAndrew 2016 - Forum software by © MyBB