I'm still a bit new with CI and working with classes, so forgive me if this is a simple question.
I was wondering if it's possible to extend the libraries in the admin section like CI does with it's native classes so you could use the extended class by just loading the native one. I'm only curious because as updates are being made to the cms, I don't want to change a library and then the source code is updated. I hope that was sort of easy to understand. Thanks in advance.
-Justin
Comments
$this->load->module_library('my_code', 'Menu');
Alternatively, you could just put those libraries in your application/libraries folder.
To extend them, you would need to first include the parent class to extend and then extend it. Does that make sense?