Welcome Guest, Not a member yet? Register   Sign In
Extending my own model
#17

[eluser]Dan Horrigan[/eluser]
OK, if you want to use an autoloader, then at least do this:
Code:
function model_autoload($class)
{
    if(stripos('_model', $class) !== FALSE)
    {
        include APPPATH . 'models/' . $class . EXT;
    }
}
spl_autoload_register('model_autoload');

This way, it doesn't interfere with other autoloading (when CI gets it). It also makes sure it only loads models. Also, include_once is unnecessary, because the autoload method doesn't get called unless the clas doesn't exist (and include_once adds overhead).

Dan


Messages In This Thread
Extending my own model - by El Forum - 05-11-2010, 02:55 PM
Extending my own model - by El Forum - 05-11-2010, 03:24 PM
Extending my own model - by El Forum - 05-11-2010, 03:29 PM
Extending my own model - by El Forum - 05-11-2010, 09:23 PM
Extending my own model - by El Forum - 05-12-2010, 03:46 PM
Extending my own model - by El Forum - 05-12-2010, 05:58 PM
Extending my own model - by El Forum - 05-12-2010, 06:09 PM
Extending my own model - by El Forum - 05-12-2010, 07:09 PM
Extending my own model - by El Forum - 05-12-2010, 07:13 PM
Extending my own model - by El Forum - 05-12-2010, 07:26 PM
Extending my own model - by El Forum - 05-13-2010, 09:29 AM
Extending my own model - by El Forum - 05-13-2010, 10:43 AM
Extending my own model - by El Forum - 05-13-2010, 10:51 AM
Extending my own model - by El Forum - 05-13-2010, 11:20 AM
Extending my own model - by El Forum - 05-13-2010, 11:23 AM
Extending my own model - by El Forum - 05-13-2010, 11:33 AM
Extending my own model - by El Forum - 05-13-2010, 11:42 AM
Extending my own model - by El Forum - 05-13-2010, 11:51 AM
Extending my own model - by El Forum - 05-13-2010, 01:23 PM
Extending my own model - by El Forum - 05-13-2010, 01:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB