Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
fb31d8f6
Commit
fb31d8f6
authored
Jul 21, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added Panel phpdoc
parent
dd47668c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
Panel.php
framework/yii/debug/Panel.php
+21
-0
No files found.
framework/yii/debug/Panel.php
View file @
fb31d8f6
...
...
@@ -11,6 +11,9 @@ use Yii;
use
yii\base\Component
;
/**
* Panel is a base class for debugger panel. It defines how data should be collected,
* what should be dispalyed at debug toolbar and on debugger details view.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
@@ -24,21 +27,36 @@ class Panel extends Component
public
$module
;
public
$data
;
/**
* @return string name of the panel
*/
public
function
getName
()
{
return
''
;
}
/**
* @return string content that is displayed at debug toolbar
*/
public
function
getSummary
()
{
return
''
;
}
/**
* @return string content that is displayed in debugger detail view
*/
public
function
getDetail
()
{
return
''
;
}
/**
* Saves data to be later used in debugger detail view.
* This method is called on every page where debugger is enabled.
*
* @return mixed data to be saved
*/
public
function
save
()
{
return
null
;
...
...
@@ -49,6 +67,9 @@ class Panel extends Component
$this
->
data
=
$data
;
}
/**
* @return string URL pointing to panel detail view
*/
public
function
getUrl
()
{
return
Yii
::
$app
->
getUrlManager
()
->
createUrl
(
$this
->
module
->
id
.
'/default/view'
,
array
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment