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?