mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
11 lines
286 B
PHP
11 lines
286 B
PHP
<?php if (method_exists($this, 'beginPage')): ?>
|
|
<?php $this->beginPage(); ?>
|
|
<?php endif; ?>
|
|
Exception View
|
|
<?php if (method_exists($this, 'endBody')): ?>
|
|
<?php $this->endBody(); ?>
|
|
<?php endif; ?>
|
|
<?php if (method_exists($this, 'endPage')): ?>
|
|
<?php $this->endPage(); ?>
|
|
<?php endif;
|