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
fc75ab87
Commit
fc75ab87
authored
Sep 28, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed ListViewBase → BaseListView
parent
b873f9f2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
classes.php
framework/yii/classes.php
+1
-1
GridView.php
framework/yii/grid/GridView.php
+2
-2
BaseListView.php
framework/yii/widgets/BaseListView.php
+1
-1
ListView.php
framework/yii/widgets/ListView.php
+1
-1
No files found.
framework/yii/classes.php
View file @
fc75ab87
...
...
@@ -235,7 +235,7 @@ return array(
'yii\widgets\LinkPager'
=>
YII_PATH
.
'/widgets/LinkPager.php'
,
'yii\widgets\LinkSorter'
=>
YII_PATH
.
'/widgets/LinkSorter.php'
,
'yii\widgets\ListView'
=>
YII_PATH
.
'/widgets/ListView.php'
,
'yii\widgets\
ListViewBase'
=>
YII_PATH
.
'/widgets/ListViewBase
.php'
,
'yii\widgets\
BaseListView'
=>
YII_PATH
.
'/widgets/BaseListView
.php'
,
'yii\widgets\MaskedInput'
=>
YII_PATH
.
'/widgets/MaskedInput.php'
,
'yii\widgets\MaskedInputAsset'
=>
YII_PATH
.
'/widgets/MaskedInputAsset.php'
,
'yii\widgets\Menu'
=>
YII_PATH
.
'/widgets/Menu.php'
,
...
...
framework/yii/grid/GridView.php
View file @
fc75ab87
...
...
@@ -14,13 +14,13 @@ use yii\base\InvalidConfigException;
use
yii\base\Widget
;
use
yii\db\ActiveRecord
;
use
yii\helpers\Html
;
use
yii\widgets\
ListViewBase
;
use
yii\widgets\
BaseListView
;
/**
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
GridView
extends
ListViewBase
class
GridView
extends
BaseListView
{
const
FILTER_POS_HEADER
=
'header'
;
const
FILTER_POS_FOOTER
=
'footer'
;
...
...
framework/yii/widgets/
ListViewBase
.php
→
framework/yii/widgets/
BaseListView
.php
View file @
fc75ab87
...
...
@@ -17,7 +17,7 @@ use yii\helpers\Html;
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
abstract
class
ListViewBase
extends
Widget
abstract
class
BaseListView
extends
Widget
{
/**
* @var array the HTML attributes for the container tag of the list view.
...
...
framework/yii/widgets/ListView.php
View file @
fc75ab87
...
...
@@ -16,7 +16,7 @@ use yii\helpers\Html;
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
ListView
extends
ListViewBase
class
ListView
extends
BaseListView
{
/**
* @var array the HTML attributes for the container of the rendering result of each data model.
...
...
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