I am using CodeIgniter. I want to use my own class to pass as argument inside controller functions.
Normally, i can put this class in a folder and include it to MY_Controller with its path. But i want to learn if there is a way to do this in CodeIgniter. I can't put it in libraries folder and can't use loader class because it tyries to create an instance of object, but i want to create instance whenever i want. Loader class gives error if my own class need constructor parameters.
What is the best way to do that? Which is the best folder to put in it?
