Welcome Guest, Not a member yet? Register   Sign In
Now I just know I'm being a newbie here!
#1

[eluser]deadfrog[/eluser]
Hi! I've noticed I'm calling a lot of the same things in my controller, for example I'm creating a data array which passes title,meta keywords & descriptions, and loads in my 'includes'. What I thought I could do would be to create a new controller, which the other controllers could inherit from. This main controller would store (for example) a default title,meta keywords & description and also enable me to pass new 'includes' to every page in one go.

It doesn't work (no error, just a blank page) and I'm sure the reason for that is my lack of expertise and failure to connect it up properly - if someone could advise me that would be terrific.

Here's my application controller:

Code:
<?php
class Application extends Controller {

    $data['html_title'] = 'Default Title';
    $data['meta_description'] = 'Default Description';
    $data['meta_keywords'] = 'Default Keywords';
    $data['html_header'] = $this->load->view('includes/html_header', $data, TRUE);
    $data['header'] = $this->load->view('includes/header', '', TRUE);
    $data['footer'] = $this->load->view('includes/footer', '', TRUE);

    function Application()
    {
        parent::Controller();            
    }
}
?>

And here's my home controller:

Code:
<?php
class Home extends Application {

    function Home()
    {
        parent::Application();
    }
    
    function index()
    {
        $data['html_title'] = 'This page Title';
        $data['meta_description'] = 'This page Description';
        $data['meta_keywords'] = 'This page Keywords';
        $this->load->view('home',$data);
    }
}
?>


Messages In This Thread
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 07:32 AM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 08:19 AM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 08:39 AM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 11:33 AM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 01:00 PM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 01:03 PM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 02:37 PM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 04:45 PM
Now I just know I'm being a newbie here! - by El Forum - 03-01-2008, 09:32 PM
Now I just know I'm being a newbie here! - by El Forum - 03-02-2008, 05:58 AM
Now I just know I'm being a newbie here! - by El Forum - 03-02-2008, 10:40 AM
Now I just know I'm being a newbie here! - by El Forum - 03-02-2008, 10:44 AM
Now I just know I'm being a newbie here! - by El Forum - 03-02-2008, 11:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB