Welcome Guest, Not a member yet? Register   Sign In
Navigation like a site without framework
#17

[eluser]SpooF[/eluser]
Its an extension of the CodeIgniter controller by Ben Edmunds. I mainly use it for my views. The idea behind a MY_Controller is to allow you add anything you want to all your controllers with out copy & pasting it into every single one. If you have a common function you use through out them all, or if you need to set a variable. I mainly posted this for the render function.

Code:
protected function render($template='main') {
        $view_path = $this->controller_name . '/' . $this->action_name . '.tpl.php'; //set the path off the view
        if (file_exists(APPPATH . 'views/' . $view_path)) {
            $this->data['content'] .= $this->load->view($view_path, $this->data, true);  //load the view
        }
        
        $this->load->view("layouts/$template.tpl.php", $this->data);  //load the template
    }

This allows you to have a shell for all your pages, it then will insert based upon the current controller and method/action/function. Your main template is in applications/views/layouts/ by default this is going to be called main.tpl.php. All your other views will be under application/views/[controller_name]/[method/action/function].tpl.php

Then all you have to do is call $this->render() and it does all the template stuff for you. Data is stored in $this->data

Example:

Code:
$this->data['title'] = 'My Page Title';
$this->data['news']  = $news;

$this->render();

This MY_Controller also has some other functionality to it, but you can look into that your self.


Messages In This Thread
Navigation like a site without framework - by El Forum - 02-05-2010, 09:33 PM
Navigation like a site without framework - by El Forum - 02-05-2010, 10:13 PM
Navigation like a site without framework - by El Forum - 02-05-2010, 10:34 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 12:54 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 02:01 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 02:51 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 04:04 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 06:54 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 09:09 AM
Navigation like a site without framework - by El Forum - 02-06-2010, 12:12 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 12:25 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 12:43 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 12:55 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 02:04 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 02:42 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 03:27 PM
Navigation like a site without framework - by El Forum - 02-06-2010, 03:42 PM
Navigation like a site without framework - by El Forum - 02-08-2010, 02:55 PM



Theme © iAndrew 2016 - Forum software by © MyBB