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.
		
		
		
		
			
				
					37 lines
				
				637 B
			
		
		
			
		
	
	
					37 lines
				
				637 B
			| 
											12 years ago
										 | <?php
 | ||
|  | /**
 | ||
| 
											12 years ago
										 |  * @link http://www.yiiframework.com/
 | ||
|  |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
|  |  * @license http://www.yiiframework.com/license/
 | ||
| 
											12 years ago
										 |  */
 | ||
|  | 
 | ||
| 
											12 years ago
										 | namespace yii\apidoc\components;
 | ||
| 
											12 years ago
										 | 
 | ||
|  | use Yii;
 | ||
|  | use yii\base\Component;
 | ||
|  | use yii\console\Controller;
 | ||
| 
											12 years ago
										 | use yii\apidoc\models\Context;
 | ||
| 
											12 years ago
										 | use yii\web\View;
 | ||
|  | 
 | ||
|  | abstract class BaseRenderer extends Component
 | ||
|  | {
 | ||
|  | 
 | ||
|  | 	private $_view;
 | ||
|  | 
 | ||
|  | 
 | ||
|  | 	public function getView()
 | ||
|  | 	{
 | ||
|  | 		if ($this->_view === null) {
 | ||
|  | 			$this->_view = new View();
 | ||
|  | 		}
 | ||
|  | 		return $this->_view;
 | ||
|  | 	}
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * @param Context $context
 | ||
|  | 	 * @param Controller $controller
 | ||
|  | 	 * @return mixed
 | ||
|  | 	 */
 | ||
|  | 	public abstract function render($context, $controller);
 | ||
|  | 
 | ||
|  | } 
 |