I have class MY_Controller extends CI_Controller and common logic for big profile section, so I'va tried to create class Profile extends MY_Controller with common logic for profile section and all class related to this section should extends this Profile class as I understand right, but when I tried to create class Index extends Profile I recieve an error:

Fatal error: Class 'Profile' not found

CodeIgniter tries to find this class in index.php which I am running.

Where is my mistake? Or maybe there is anoter better way to mark out common logic?

link|improve this question

77% accept rate
I asked the same question [here][1] [1]: stackoverflow.com/questions/7982187/… Hope it helps – luso Dec 1 '11 at 14:36
feedback

2 Answers

up vote 7 down vote accepted

I take it you have put your MY_Controller in /application/core, and set the prefix in the config. I would be careful about using index as a class name though. As a function/method in Codeigniter it has a dedicated behaviour.

If you then want to extend that controller you need to put the classes in the same file.

E.g. In /application core

/* start of php file */
class MY_Controller extends CI_Controller {
    public function __construct() {
       parent::__construct();
    }
...
}

class another_controller extends MY_Controller {
    public function __construct() {
       parent::__construct();
    }
...
}
/* end of php file */

In /application/controllers

class foo extends MY_Controller {
    public function __construct() {
       parent::__construct();
    }
...
}

or

class bar extends another_controller {
    public function __construct() {
       parent::__construct();
    }
...
}
link|improve this answer
Probably worth mentioning that methods in MY_Controller should likely be prefixed with _, so that CI doesn't route them (since, by nature all methods you want to share with all controllers must be public). – Tim Post Apr 29 at 15:37
feedback

All classes you are extending should live in application/CORE directory so in your case both My_Controller and Profile should live there. All "end point" controllers will live in application/controllers folder

UPDATE

I stand corrected. Extended classes should live in the same file. @Rooneyl's answer shows how to implement

link|improve this answer
I think is not necesary that all the controllers are under CORE but only the base controllers. – luso Dec 1 '11 at 14:41
@luso, I tried putting my_controllers in /controllers/core and Profile & OtherClass (op called it Index) in /controllers. Otherclass extends Profile extends My_controller. that throws error. Move Profile to /core and it works. Are you able to put Profile & OtherClass in /controllers and get it to work? – Alexey Gerasimov Dec 1 '11 at 14:47
@Alexey Gerasimov I've moved Profile class to the application/core folder, but nothing have changed. I do recieve the same error. Does it matter what name have file or anything else? What have I missed? – Yekver Dec 1 '11 at 14:57
@Rooneyl I got it. But is it a good practise to create an __autoload function, or better place all common classes in MY_Controller? – Yekver Dec 1 '11 at 15:18
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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