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.
		
		
		
		
			
				
					63 lines
				
				1.7 KiB
			
		
		
			
		
	
	
					63 lines
				
				1.7 KiB
			| 
											13 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * Smarty view renderer class file.
 | ||
|  |  *
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
|  |  * @copyright Copyright © 2008 Yii Software LLC
 | ||
|  |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | namespace yii\renderers;
 | ||
|  | 
 | ||
|  | use \yii\base\View;
 | ||
|  | use \yii\base\ViewRenderer;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * SmartyViewRenderer allows you to use Smarty templates in views.
 | ||
|  |  *
 | ||
|  |  * @author Alexander Makarov <sam@rmcreative.ru>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class SmartyViewRenderer extends ViewRenderer
 | ||
|  | {
 | ||
|  | 	public $smartyDir = '@app/vendors/Smarty';
 | ||
|  | 	public $cacheDir = '@app/runtime/Smarty/cache';
 | ||
|  | 	public $compileDir = '@app/runtime/Smarty/compile';
 | ||
|  | 	public $fileExtension = 'tpl';
 | ||
|  | 
 | ||
|  | 	/** @var \Smarty */
 | ||
|  | 	protected $_smarty;
 | ||
|  | 
 | ||
|  | 	public function init()
 | ||
|  | 	{
 | ||
|  | 		require_once(\Yii::getAlias($this->smartyDir).'/Smarty.class.php');
 | ||
|  | 		$this->_smarty = new \Smarty();
 | ||
|  | 		$this->_smarty->setCompileDir(\Yii::getAlias($this->compileDir));
 | ||
|  | 		$this->_smarty->setCacheDir(\Yii::getAlias($this->cacheDir));
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Renders a view file.
 | ||
|  | 	 *
 | ||
|  | 	 * This method is invoked by [[View]] whenever it tries to render a view.
 | ||
|  | 	 * Child classes must implement this method to render the given view file.
 | ||
|  | 	 *
 | ||
|  | 	 * @param View $view the view object used for rendering the file.
 | ||
|  | 	 * @param string $file the view file.
 | ||
|  | 	 * @param array $params the parameters to be passed to the view file.
 | ||
|  | 	 *
 | ||
|  | 	 * @return string the rendering result
 | ||
|  | 	 */
 | ||
|  | 	public function render($view, $file, $params)
 | ||
|  | 	{
 | ||
|  | 		$ext = pathinfo($file, PATHINFO_EXTENSION);
 | ||
|  | 		if($ext === $this->fileExtension) {
 | ||
|  | 			/** @var \Smarty_Internal_Template $template */
 | ||
|  | 			$template = $this->_smarty->createTemplate($file, null, null, $params, true);
 | ||
|  | 			return $template->fetch();
 | ||
|  | 		}
 | ||
|  | 		else {
 | ||
|  | 			return $view->renderPhpFile($file, $params);
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | }
 |