Welcome Guest, Not a member yet? Register   Sign In
loading menu for all controllers ?
#1

[eluser]hardik[/eluser]
hi,

i am bit new to codeigniter. and i have set template like below..

i m creating one template.php

Code:
<html>
<head>
<title>
    <?php echo $title; ?>
</title>
</head>

<body>

<?php
echo $this->load->view('header');
echo $this->load->view('navigation');

<div>
echo $this->load->view($view);
</div>


echo $this->load->view('footer');
?&gt;


&lt;/body&gt;
&lt;/html&gt;

now i m loading it using controller like ....

Code:
class Welcome extends Controller {

    function Welcome()
    {
        parent::Controller();
        session_start();    
    }
    
    function index()
    {
        $data['navigationdata']=$this->navigation->getAllmenuitems(); // this loads all navigation items from model navigation
        $data['view'] = 'home'; // this loads home view
        $this->load->view('template',$data);
    }
    
}

all code works perfectly but after creating few more controllers like user,categories,....etc i have question

how can i load navigation data directly in my navigation view without loading it every time from all the controllers...?

is there a way i can load some data directly as my navigation will be in every page in the site?

i did search a lot and found great things in wiki. i came to this article

http://codeigniter.com/wiki/Header_and_F...ge_-_jedd/

i read it thrice but i didn't get how it works?

can anyone help me how i can achieve this ?


Messages In This Thread
loading menu for all controllers ? - by El Forum - 11-27-2009, 01:24 AM
loading menu for all controllers ? - by El Forum - 11-27-2009, 03:40 AM
loading menu for all controllers ? - by El Forum - 11-27-2009, 05:14 AM
loading menu for all controllers ? - by El Forum - 11-27-2009, 08:19 AM
loading menu for all controllers ? - by El Forum - 11-27-2009, 08:20 AM
loading menu for all controllers ? - by El Forum - 11-27-2009, 02:00 PM
loading menu for all controllers ? - by El Forum - 12-18-2009, 03:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB