Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

This is very easy. Consider this example

<?php
Class Home extends CI_Controller{

     public $arg1 = 1;
     public $arg2 = 2;

     function index($this->$arg1 , $this->$arg2){ //or function index()
      //Then inside function 
      //$vara = $this->$arg1 , $varb = $this->$arg2;



     }

}
share|improve this answer

As per my understanding you need a sub base class

place your sub base class MY_Controller at

\application\core\

share|improve this answer
I didn't ask how to extend CI_Controller, don't try to sell what you know whether it is correct answer or not. – Sinem Bozacı Sep 28 '12 at 17:32
Sorry for my impoliteness. – Sinem Bozacı Oct 2 '12 at 12:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.