You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
329 B
26 lines
329 B
<?php
|
|
/**
|
|
* The View class
|
|
*/
|
|
class LtView
|
|
{
|
|
public $layoutDir;
|
|
|
|
public $templateDir;
|
|
|
|
public $layout;
|
|
|
|
public $template;
|
|
|
|
public function render()
|
|
{
|
|
if (!empty($this->layout))
|
|
{
|
|
include($this->layoutDir . $this->layout . '.php');
|
|
}
|
|
else
|
|
{
|
|
include($this->templateDir . $this->template . '.php');
|
|
}
|
|
}
|
|
}
|
|
|