Welcome Guest, Not a member yet? Register   Sign In
Extends Controller Problem
#5

[eluser]InsiteFX[/eluser]
Here the Autoloader that noctrum is talking about!
Code:
/*
| -------------------------------------------------------------------
|  Native Autoload - by Phil Sturgeon. New Version!
| -------------------------------------------------------------------
|
| Nothing to do with config/autoload.php, this allows PHP autoload to work
| for base controllers and some third-party libraries.
|
| If using HMVC you do not need this! HMVC will autoload.
|
| Place this code at the bottom of your application/config/config.php file.
*/
function __autoload($class)
{
    if (strpos($class, 'CI_') !== 0)
    {
        if (file_exists($file = APPPATH . 'core/' . $class . EXT))
        {
            include $file;
        }

        elseif (file_exists($file = APPPATH . 'libraries/' . $class . EXT))
        {
            include $file;
        }
    }
}

InsiteFX


Messages In This Thread
Extends Controller Problem - by El Forum - 06-13-2011, 12:23 AM
Extends Controller Problem - by El Forum - 06-13-2011, 04:00 AM
Extends Controller Problem - by El Forum - 06-13-2011, 04:51 AM
Extends Controller Problem - by El Forum - 06-13-2011, 04:59 AM
Extends Controller Problem - by El Forum - 06-13-2011, 02:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB