Welcome Guest, Not a member yet? Register   Sign In
How to extend a selfmade controller?
#1

[eluser]kevinh21[/eluser]
Hi everyone
I made a main controller that is used to build the website and handling errors and some things...it's called wsite Controller.

Now, i would like to "link" all my new controllers to this controller instead of CI's default Controller.

How can i do this?

wsite.php
Code:
<?php
class Wsite extends Controller
{
....
}
?>

blog.php
Code:
<?php
class Blog extends Wsite
{
....
}
?>

Where/how do i have to declare the wsite controller so that the blog controller can extend wsite?
#2

[eluser]Pascal Kriete[/eluser]
Put the wsite class into the application/libraries folder and call the file MY_Controller.

Then just do what you're doing above.
#3

[eluser]kevinh21[/eluser]
works Smile
Thank you




Theme © iAndrew 2016 - Forum software by © MyBB