New bootstrap-based layout #30
@ -8,28 +8,26 @@
 | 
			
		||||
 | 
			
		||||
class DummyBox extends SubTemplate
 | 
			
		||||
{
 | 
			
		||||
	protected $_class;
 | 
			
		||||
	protected $_content;
 | 
			
		||||
	protected $_title;
 | 
			
		||||
 | 
			
		||||
	public function __construct($title = '', $content = '', $class = '')
 | 
			
		||||
	public function __construct($title = '', $content = '', $class = null)
 | 
			
		||||
	{
 | 
			
		||||
		$this->_title = $title;
 | 
			
		||||
		parent::__construct($title);
 | 
			
		||||
		$this->_content = $content;
 | 
			
		||||
		$this->_class = $class;
 | 
			
		||||
 | 
			
		||||
		if (isset($class))
 | 
			
		||||
			$this->_class .= $class;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	protected function html_content()
 | 
			
		||||
	{
 | 
			
		||||
		if ($this->_title)
 | 
			
		||||
			echo '
 | 
			
		||||
			<div class="boxed_content', $this->_class ? ' ' . $this->_class : '', '">', $this->_title ? '
 | 
			
		||||
				<h2>' . $this->_title . '</h2>' : '', '
 | 
			
		||||
				', $this->_content;
 | 
			
		||||
				<h2>', $this->_title, '</h2>';
 | 
			
		||||
 | 
			
		||||
		echo $this->_content;
 | 
			
		||||
 | 
			
		||||
		foreach ($this->_subtemplates as $template)
 | 
			
		||||
			$template->html_main();
 | 
			
		||||
 | 
			
		||||
		echo '
 | 
			
		||||
			</div>';
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user