Welcome Guest, Not a member yet? Register   Sign In
Best way to avoid duplicating html in views
#14

[eluser]Polarity[/eluser]
ok, one step after another
your code:
Code:
<?php
class Modulename extends Controller {
    

    function Modulename()
    {
        parent::Controller();    
    }
    
    function index()
    {    
        $data['page_title'] = 'Site Name - Module Name';
        $data['template'] = 'default';
        $data['masthead'] = $this->load->view("templates/$data['template']/masthead");
        $data['nav'] = $this->load->view("templates/$data['template']/nav");
        $data['content'] = $this->result_of_some_number_crunching_maybe;
        $data['content'] .= $this->load->view('an_extra_view');
        $data['content'] .= $this->load->view('another_view_perhaps');
        $data['footer'] = $this->load->view("templates/$data['template']/footer");
        $this->load->view("templates/$data['template']/index", $data);
    }
} ?>

your code with corrected syntax

Code:
<?php
class Modulename extends Controller {
    

    function Modulename()
    {
        parent::Controller();    
    }
    
    function index()
    {    
        $data['page_title'] = 'Site Name - Module Name';
        $data['template'] = 'default';
        $data['masthead'] = $this->load->view("templates/".$data['template']."/masthead");
        $data['nav'] = $this->load->view("templates/".$data['template']."/nav");
        $data['content'] = $this->result_of_some_number_crunching_maybe;
        $data['content'] .= $this->load->view('an_extra_view');
        $data['content'] .= $this->load->view('another_view_perhaps');
        $data['footer'] = $this->load->view("templates/".$data['template']."/footer");
        $this->load->view("templates/".$data['template']."/index", $data);
    }
} ?>


Messages In This Thread
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:50 AM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 09:31 AM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 10:24 AM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 10:35 AM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 10:46 AM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 01:10 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 01:27 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 05:44 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 06:24 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 06:24 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 06:54 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:04 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:13 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:18 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:19 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:26 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:27 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:29 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:30 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:32 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 08:42 PM
Best way to avoid duplicating html in views - by El Forum - 12-18-2008, 09:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB