1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
- namespace yii\twig;
- use Twig_Profiler_Profile;
- use yii\web\View;
- class Profile extends \Twig_Extension_Profiler
- {
- protected $view;
- protected $profiler;
- public function __construct(Twig_Profiler_Profile $profile)
- {
- $profile = new \Twig_Profiler_Profile();
- $dumper = new \Twig_Profiler_Dumper_Text();
- parent::__construct($profile);
- $view = \Yii::$app->getView();
- $view->on(View::EVENT_AFTER_RENDER, function () use ($profile, $dumper) {
- \Yii::trace($dumper->dump($profile));
- });
- }
- }
|