You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			27 lines
		
	
	
		
			329 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			329 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?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');
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |