123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace yii\widgets;
- use yii\base\Widget;
- class Block extends Widget
- {
-
- public $renderInPlace = false;
-
- public function init()
- {
- parent::init();
- ob_start();
- ob_implicit_flush(false);
- }
-
- public function run()
- {
- $block = ob_get_clean();
- if ($this->renderInPlace) {
- echo $block;
- }
- $this->view->blocks[$this->getId()] = $block;
- }
- }
|