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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
64fe535e
Commit
64fe535e
authored
Jul 24, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finished ListView.
parent
d1212bc7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
36 deletions
+56
-36
DetailView.php
framework/yii/widgets/DetailView.php
+2
-2
ListView.php
framework/yii/widgets/ListView.php
+54
-34
No files found.
framework/yii/widgets/DetailView.php
View file @
64fe535e
...
@@ -74,9 +74,9 @@ class DetailView extends Widget
...
@@ -74,9 +74,9 @@ class DetailView extends Widget
*/
*/
public
$attributes
;
public
$attributes
;
/**
/**
* @var string|
\Closure
the template used to render a single attribute. If a string, the token `{label}`
* @var string|
callback
the template used to render a single attribute. If a string, the token `{label}`
* and `{value}` will be replaced with the label and the value of the corresponding attribute.
* and `{value}` will be replaced with the label and the value of the corresponding attribute.
* If a
n anonymous function
, the signature must be as follows:
* If a
callback (e.g. an anonymous function)
, the signature must be as follows:
*
*
* ~~~
* ~~~
* function ($attribute, $index, $widget)
* function ($attribute, $index, $widget)
...
...
framework/yii/widgets/ListView.php
View file @
64fe535e
...
@@ -22,27 +22,51 @@ use yii\helpers\Html;
...
@@ -22,27 +22,51 @@ use yii\helpers\Html;
class
ListView
extends
Widget
class
ListView
extends
Widget
{
{
/**
/**
* @var array the HTML options for the container tag.
* @var array the HTML attributes for the container tag of the list view.
* The "tag" element specifies the tag name of the container element and defaults to "div".
*/
*/
public
$options
=
array
();
public
$options
=
array
();
/**
/**
* @var \yii\data\IDataProvider the data provider for the view.
* @var \yii\data\IDataProvider the data provider for the view.
This property is required.
*/
*/
public
$dataProvider
;
public
$dataProvider
;
/**
* @var array the HTML attributes for the container of the rendering result of each data item.
* The "tag" element specifies the tag name of the container element and defaults to "div".
* If "tag" is false, it means no container element will be rendered.
*/
public
$itemOptions
=
array
();
public
$itemOptions
=
array
();
public
$itemTemplate
;
/**
* @var string|callback the name of the view for rendering each data item, or a callback (e.g. an anonymous function)
* for rendering each data item. If it specifies a view name, the following variables will
* be available in the view:
*
* - `$item`: mixed, the data item
* - `$key`: mixed, the key value associated with the data item
* - `$index`: integer, the zero-based index of the data item in the items array returned by [[dataProvider]].
* - `$widget`: ListView, this widget instance
*
* Note that the view name is resolved into the view file by the current context of the [[view]] object.
*
* If this property is specified as a callback, it should have the following signature:
*
* ~~~
* function ($item, $key, $index, $widget)
* ~~~
*/
public
$itemView
;
/**
/**
* @var string the HTML code to be displayed between any two consecutive items.
* @var string the HTML code to be displayed between any two consecutive items.
*/
*/
public
$separator
=
"
\n
"
;
public
$separator
=
"
\n
"
;
/**
/**
* @var array the configuration for the pager widget. By default, [[LinkPager]] will be
* @var array the configuration for the pager widget. By default, [[LinkPager]] will be
* used to render the pager.
* used to render the pager.
You can use a different widget class by configuring the "class" element.
*/
*/
public
$pager
=
array
();
public
$pager
=
array
();
/**
/**
* @var array the configuration for the sorter widget. By default, [[LinkSorter]] will be
* @var array the configuration for the sorter widget. By default, [[LinkSorter]] will be
* used to render the sorter.
* used to render the sorter.
You can use a different widget class by configuring the "class" element.
*/
*/
public
$sorter
=
array
();
public
$sorter
=
array
();
/**
/**
...
@@ -58,12 +82,12 @@ class ListView extends Widget
...
@@ -58,12 +82,12 @@ class ListView extends Widget
* - `{page}`: the page number (1-based) current being displayed
* - `{page}`: the page number (1-based) current being displayed
* - `{pageCount}`: the number of pages available
* - `{pageCount}`: the number of pages available
*/
*/
public
$summary
Content
;
public
$summary
;
/**
/**
* @var string the HTML content to be displayed when [[dataProvider]] does not have any data.
* @var string the HTML content to be displayed when [[dataProvider]] does not have any data.
* If you do not want to show anything when [[dataProvider]] is empty, you may set this property with an empty string.
* If you do not want to show anything when [[dataProvider]] is empty, you may set this property with an empty string.
*/
*/
public
$empty
Content
;
public
$empty
;
/**
/**
* @var string the layout that determines how different sections of the list view should be organized.
* @var string the layout that determines how different sections of the list view should be organized.
* The following tokens will be replaced with the corresponding section contents:
* The following tokens will be replaced with the corresponding section contents:
...
@@ -78,50 +102,36 @@ class ListView extends Widget
...
@@ -78,50 +102,36 @@ class ListView extends Widget
/**
/**
* Initializes the view.
* Initializes the view.
* This method will initialize required property values and instantiate {@link columns} objects.
*/
*/
public
function
init
()
public
function
init
()
{
{
if
(
$this
->
dataProvider
===
null
)
{
if
(
$this
->
dataProvider
===
null
)
{
throw
new
InvalidConfigException
(
'The "dataProvider" property must be set.'
);
throw
new
InvalidConfigException
(
'The "dataProvider" property must be set.'
);
}
}
if
(
$this
->
empty
Content
===
null
)
{
if
(
$this
->
empty
===
null
)
{
$this
->
empty
Content
=
'<div class="empty">'
.
Yii
::
t
(
'yii'
,
'No results found.'
)
.
'</div>'
;
$this
->
empty
=
'<div class="empty">'
.
Yii
::
t
(
'yii'
,
'No results found.'
)
.
'</div>'
;
}
}
}
}
/**
/**
* Renders the view.
* Runs the widget.
* This is the main entry of the whole view rendering.
* Child classes should mainly override {@link renderContent} method.
*/
*/
public
function
run
()
public
function
run
()
{
{
if
(
$this
->
dataProvider
->
getCount
()
>
0
)
{
if
(
$this
->
dataProvider
->
getCount
()
>
0
)
{
$tag
=
ArrayHelper
::
remove
(
$this
->
options
,
'tag'
,
'div'
);
$tag
=
ArrayHelper
::
remove
(
$this
->
options
,
'tag'
,
'div'
);
echo
Html
::
tag
(
$tag
,
$this
->
renderContent
(),
$this
->
options
);
$content
=
preg_replace_callback
(
"/
{
\\w+
}
/"
,
array
(
$this
,
'renderSection'
),
$this
->
layout
);
echo
Html
::
tag
(
$tag
,
$content
,
$this
->
options
);
}
else
{
}
else
{
echo
$this
->
empty
Content
;
echo
$this
->
empty
;
}
}
}
}
/**
/**
* Renders the main content of the view.
* Renders a section of the list view.
* The content is divided into sections, such as summary, items, pager.
* This method is invoked for every placeholder found in [[layout]].
* Each section is rendered by a method named as "renderXyz", where "Xyz" is the section name.
* The rendering results will replace the corresponding placeholders in {@link template}.
*/
public
function
renderContent
()
{
return
preg_replace_callback
(
"/
{
\\w+
}
/"
,
array
(
$this
,
'renderSection'
),
$this
->
layout
);
}
/**
* Renders a section.
* This method is invoked by {@link renderContent} for every placeholder found in {@link template}.
* It should return the rendering result that would replace the placeholder.
* It should return the rendering result that would replace the placeholder.
* @param array $matches the matches, where $matches[0] represents the whole placeholder,
* @param array $matches the matches, where $matches[0] represents the matching placeholder.
* while $matches[1] contains the name of the matched placeholder.
* @return string the rendering result of the section
* @return string the rendering result of the section
*/
*/
protected
function
renderSection
(
$matches
)
protected
function
renderSection
(
$matches
)
...
@@ -151,13 +161,13 @@ class ListView extends Widget
...
@@ -151,13 +161,13 @@ class ListView extends Widget
}
}
$page
=
$pagination
->
getPage
()
+
1
;
$page
=
$pagination
->
getPage
()
+
1
;
$pageCount
=
$pagination
->
pageCount
;
$pageCount
=
$pagination
->
pageCount
;
if
((
$summaryContent
=
$this
->
summary
Content
)
===
null
)
{
if
((
$summaryContent
=
$this
->
summary
)
===
null
)
{
$summaryContent
=
'<div class="summary">'
.
Yii
::
t
(
'yii'
,
'Total <b>1</b> result.|Showing <b>{begin}-{end}</b> of <b>{totalCount}</b> results.'
,
$totalCount
)
.
'</div>'
;
$summaryContent
=
'<div class="summary">'
.
Yii
::
t
(
'yii'
,
'Total <b>1</b> result.|Showing <b>{begin}-{end}</b> of <b>{totalCount}</b> results.'
,
$totalCount
)
.
'</div>'
;
}
}
}
else
{
}
else
{
$begin
=
$page
=
$pageCount
=
1
;
$begin
=
$page
=
$pageCount
=
1
;
$end
=
$totalCount
=
$count
;
$end
=
$totalCount
=
$count
;
if
((
$summaryContent
=
$this
->
summary
Content
)
===
null
)
{
if
((
$summaryContent
=
$this
->
summary
)
===
null
)
{
$summaryContent
=
'<div class="summary">'
.
Yii
::
t
(
'yii'
,
'Total <b>1</b> result.|Total <b>{count}</b> results.'
,
$count
)
.
'</div>'
;
$summaryContent
=
'<div class="summary">'
.
Yii
::
t
(
'yii'
,
'Total <b>1</b> result.|Total <b>{count}</b> results.'
,
$count
)
.
'</div>'
;
}
}
}
}
...
@@ -188,14 +198,24 @@ class ListView extends Widget
...
@@ -188,14 +198,24 @@ class ListView extends Widget
/**
/**
* Renders a single data item.
* Renders a single data item.
* @param mixed $item the data item to be rendered
* @param mixed $key the key value associated with the data item
* @param integer $index the zero-based index of the data item in the item array returned by [[dataProvider]].
* @return string the rendering result
* @return string the rendering result
*/
*/
public
function
renderItem
(
$item
,
$key
,
$index
)
public
function
renderItem
(
$item
,
$key
,
$index
)
{
{
if
(
$this
->
item
Template
===
null
)
{
if
(
$this
->
item
View
===
null
)
{
$content
=
$key
;
$content
=
$key
;
}
elseif
(
is_string
(
$this
->
itemView
))
{
$content
=
$this
->
getView
()
->
render
(
$this
->
itemView
,
array
(
'item'
=>
$item
,
'key'
=>
$key
,
'index'
=>
$index
,
'widget'
=>
$this
,
));
}
else
{
}
else
{
$content
=
call_user_func
(
$this
->
item
Template
,
$item
,
$key
,
$index
,
$this
);
$content
=
call_user_func
(
$this
->
item
View
,
$item
,
$key
,
$index
,
$this
);
}
}
$options
=
$this
->
itemOptions
;
$options
=
$this
->
itemOptions
;
$tag
=
ArrayHelper
::
remove
(
$options
,
'tag'
,
'div'
);
$tag
=
ArrayHelper
::
remove
(
$options
,
'tag'
,
'div'
);
...
...
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