CodeIgniter Forums
Using 3 Party Libraries - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Using 3 Party Libraries (/showthread.php?tid=23355)



Using 3 Party Libraries - El Forum - 10-08-2009

[eluser]Unknown[/eluser]
Hello everybody,

I need to implement with 3 party libraries (e.g. pdf libs) in codeigniter.
When i instantiate a sub class with parameters with the folowing construct
Code:
$myInst = new MySubClass($param1, $param2)
an error withhin Loader.php calss occurs.
Is it only possible to instantiate a class like this
Code:
$this->myInst->load->library('mySubClass, $byte_order);
and pass parameters as an array? So i must modify each constructor on 3 party libs.

An other question is, if i extend a sub calss from an other sub class, then the super class will instantiated by the framework or must i load it manually?

What is the best practices to handle with 3 party libraries, instantiate sub classes and with inheritance.

Thanks


Using 3 Party Libraries - El Forum - 10-08-2009

[eluser]bigtony[/eluser]
You can just put a require_once() pointing to the path of the 3rd party class, into the top of your controller that needs it. Then just instantiate with $a = new Whatever() in the normal way. If you subclass it, just require them both.


Using 3 Party Libraries - El Forum - 10-08-2009

[eluser]louis w[/eluser]
Check out this post:
http://ellislab.com/forums/viewthread/130721/#645557