[eluser]laytone[/eluser]
Can I extend the CI_Base class in a library? Will this make my CI objects available in the $this-> variable?
[eluser]WanWizard[/eluser]
You can extend any class, but you'll just be creating another instance of that class, you'll still have to use get_instance(), or assign all properties to the CI object to your new class manually.
[eluser]laytone[/eluser]
[quote author="WanWizard" date="1291341550"]You can extend any class, but you'll just be creating another instance of that class, you'll still have to use get_instance(), or assign all properties to the CI object to your new class manually.[/quote]
I understand, and that makes a lot of sense. Thank you.