Browse Source

reorganized RequestPanel.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
6e851e9547
  1. 28
      framework/yii/debug/panels/RequestPanel.php
  2. 5
      framework/yii/debug/views/default/view.php

28
framework/yii/debug/panels/RequestPanel.php

@ -9,6 +9,7 @@ namespace yii\debug\panels;
use Yii; use Yii;
use yii\base\InlineAction; use yii\base\InlineAction;
use yii\bootstrap\Tabs;
use yii\debug\Panel; use yii\debug\Panel;
use yii\helpers\Html; use yii\helpers\Html;
@ -53,6 +54,33 @@ EOD;
'Action' => $this->data['action'], 'Action' => $this->data['action'],
'Parameters' => $this->data['actionParams'], '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" return "<h1>Request Information</h1>\n"
. $this->renderData('Routing', $data) . "\n" . $this->renderData('Routing', $data) . "\n"
. $this->renderData('Flashes', $this->data['flashes']) . "\n" . $this->renderData('Flashes', $this->data['flashes']) . "\n"

5
framework/yii/debug/views/default/view.php

@ -1,5 +1,7 @@
<?php <?php
use yii\bootstrap\AffixAsset;
use yii\bootstrap\DropdownAsset;
use yii\helpers\Html; use yii\helpers\Html;
/** /**
@ -12,7 +14,8 @@ use yii\helpers\Html;
*/ */
$this->title = 'Yii Debugger'; $this->title = 'Yii Debugger';
yii\bootstrap\DropdownAsset::register($this); DropdownAsset::register($this);
AffixAsset::register($this);
?> ?>
<div class="default-view"> <div class="default-view">
<div class="navbar"> <div class="navbar">

Loading…
Cancel
Save