%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/egp/vendor/yiisoft/yii2-debug/src/views/default/panels/profile/ |
Upload File : |
<?php use yii\grid\GridView; use yii\helpers\Html; /* @var $panel yii\debug\panels\ProfilingPanel */ /* @var $searchModel yii\debug\models\search\Profile */ /* @var $dataProvider yii\data\ArrayDataProvider */ /* @var $time int */ /* @var $memory int */ ?> <h1>Performance Profiling</h1> <p> Total processing time: <b><?= $time ?></b>; Peak memory: <b><?= $memory ?></b>. <?= Html::a('Show Profiling Timeline', [ '/' . $panel->module->id . '/default/view', 'panel' => 'timeline', 'tag' => $panel->tag, ]) ?> </p> <?php echo GridView::widget([ 'dataProvider' => $dataProvider, 'id' => 'profile-panel-detailed-grid', 'options' => ['class' => 'detail-grid-view table-responsive'], 'filterModel' => $searchModel, 'filterUrl' => $panel->getUrl(), 'pager' => [ 'linkContainerOptions' => [ 'class' => 'page-item' ], 'linkOptions' => [ 'class' => 'page-link' ], 'disabledListItemSubTagOptions' => [ 'tag' => 'a', 'href' => 'javascript:;', 'tabindex' => '-1', 'class' => 'page-link' ] ], 'columns' => [ [ 'attribute' => 'seq', 'label' => 'Time', 'value' => function ($data) { $timeInSeconds = $data['timestamp'] / 1000; $millisecondsDiff = (int)(($timeInSeconds - (int)$timeInSeconds) * 1000); return date('H:i:s.', $timeInSeconds) . sprintf('%03d', $millisecondsDiff); }, 'headerOptions' => [ 'class' => 'sort-numerical' ] ], [ 'attribute' => 'duration', 'value' => function ($data) { return sprintf('%.1f ms', $data['duration']); }, 'options' => [ 'width' => '10%', ], 'headerOptions' => [ 'class' => 'sort-numerical' ] ], 'category', [ 'attribute' => 'info', 'value' => function ($data) { return str_repeat('<span class="indent">→</span>', $data['level']) . Html::encode($data['info']); }, 'format' => 'html', 'options' => [ 'width' => '60%', ], ], ], ]);