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.
27 lines
329 B
27 lines
329 B
1 year ago
|
<?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');
|
||
|
}
|
||
|
}
|
||
|
}
|