Welcome Guest, Not a member yet? Register   Sign In
Load a view from Mods folder
#1

[eluser]Unknown[/eluser]
I am using Matchbox 0.9.4 and CI 1.7.1

I have a structure:
application/
-- modules/
---- pages/
------ controllers/
-------- pages.php
------ views/
--------content.php
------ models/
-- views/
---- layout/
------ header.php
------ sidebar.php
------ footer.php
---- loader.php

application/modules/pages/controllers/pages.php
Code:
$this->load->view('loader');

application/views/loader.php
Code:
$this->load->view('layout/header');
$this->load->view('layout/sidebar');

/* this is where I want to put the modules/pages/view/content.php */

$this->load->view('layout/footer');


How do I load a view from the modules/pages/view/content.php file?




Theme © iAndrew 2016 - Forum software by © MyBB