Welcome Guest, Not a member yet? Register   Sign In
Big Help implementing this Factory pattern in CodeIgniter
#2

[eluser]crumpet[/eluser]
Code:
$style = 'formal'; // OR 'casual'
$data['body'] = "thanks for lunch";
$data['name'] = "Jason";
$this->load->view($style . '/header');
$this->load->view($style . '/body', $data);
$this->load->view($style . '/footer', $data);

//dir structure
//  views ->
//     ->formal
//         -> header.php, body.php, footer.php
//     ->casual
//         ->header.php, body.php, footer.php
Personally i'd just have a letter.php for each style which contains header, body and footer


Messages In This Thread
Big Help implementing this Factory pattern in CodeIgniter - by El Forum - 12-01-2008, 09:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB