Commit 6e851e95 by Qiang Xue

reorganized RequestPanel.

parent e96ef1f4
......@@ -9,6 +9,7 @@ namespace yii\debug\panels;
use Yii;
use yii\base\InlineAction;
use yii\bootstrap\Tabs;
use yii\debug\Panel;
use yii\helpers\Html;
......@@ -53,6 +54,33 @@ EOD;
'Action' => $this->data['action'],
'Parameters' => $this->data['actionParams'],
);
return Tabs::widget(array(
'items' => array(
array(
'label' => 'Parameters',
'content' => $this->renderData('Routing', $data)
. $this->renderData('$_GET', $this->data['GET'])
. $this->renderData('$_POST', $this->data['POST'])
. $this->renderData('$_FILES', $this->data['POST'])
. $this->renderData('$_COOKIE', $this->data['COOKIE']),
'active' => true,
),
array(
'label' => 'Headers',
'content' => $this->renderData('Request Headers', $this->data['requestHeaders'])
. $this->renderData('Response Headers', $this->data['responseHeaders']),
),
array(
'label' => 'Session',
'content' => $this->renderData('$_SESSION', $this->data['SESSION'])
. $this->renderData('Flashes', $this->data['flashes']),
),
array(
'label' => '$_SERVER',
'content' => $this->renderData('$_SERVER', $this->data['SERVER']),
),
),
));
return "<h1>Request Information</h1>\n"
. $this->renderData('Routing', $data) . "\n"
. $this->renderData('Flashes', $this->data['flashes']) . "\n"
......
<?php
use yii\bootstrap\AffixAsset;
use yii\bootstrap\DropdownAsset;
use yii\helpers\Html;
/**
......@@ -12,7 +14,8 @@ use yii\helpers\Html;
*/
$this->title = 'Yii Debugger';
yii\bootstrap\DropdownAsset::register($this);
DropdownAsset::register($this);
AffixAsset::register($this);
?>
<div class="default-view">
<div class="navbar">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment