Skip to content

Instantly share code, notes, and snippets.

@philsturgeon
Created December 4, 2010 14:26
Show Gist options
  • Save philsturgeon/728210 to your computer and use it in GitHub Desktop.
Save philsturgeon/728210 to your computer and use it in GitHub Desktop.
class Template
{
private $theme = 'default';
function set_theme($theme)
{
$this->theme = $theme;
}
function build($view, $data)
{
$this->load->view($this->theme.'/header', $data);
$this->load->view($view, $data);
$this->load->view($this->theme.'/footer', $data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment