| 1 | <?php |
||
| 18 | class View extends \yii\base\View implements ViewContextInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public $defaultExtension = 'twig'; |
||
| 24 | |||
| 25 | protected $_viewPath; |
||
| 26 | |||
| 27 | public function getViewPath() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Returns rendering context. |
||
| 38 | */ |
||
| 39 | public function getContext($context = null) |
||
| 43 | |||
| 44 | public function existsTemplate($template, $context = null) |
||
| 48 | |||
| 49 | public function render($template, $data = [], $context = null) |
||
| 53 | } |
||
| 54 |