Welcome Guest, Not a member yet? Register   Sign In
Is it possible to extend your own libraries/helpers...etc.
#2

[eluser]WanWizard[/eluser]
Yes, why not?

The only thing you have to solve is loading them, as CI doesn't support autoloading. So either implement autoloading yourself, or make sure your base library is loaded before you load the extended libraries.

This can be as easy as:
Code:
$this->load->library('base'); unset($this->base); // we don't need this one
$this->load->library('baseextended');


Messages In This Thread
Is it possible to extend your own libraries/helpers...etc. - by El Forum - 12-02-2010, 04:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB