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
6fff5662
Commit
6fff5662
authored
Mar 11, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better use @see for See in phpdoc
parent
c94a40e9
Hide whitespace changes
Inline
Side-by-side
Showing
32 changed files
with
121 additions
and
120 deletions
+121
-120
Choice.php
extensions/authclient/widgets/Choice.php
+1
-1
ButtonDropdown.php
extensions/bootstrap/ButtonDropdown.php
+1
-1
NavBar.php
extensions/bootstrap/NavBar.php
+4
-4
Progress.php
extensions/bootstrap/Progress.php
+1
-1
Tabs.php
extensions/bootstrap/Tabs.php
+3
-3
Widget.php
extensions/bootstrap/Widget.php
+1
-1
Accordion.php
extensions/jui/Accordion.php
+3
-3
DatePicker.php
extensions/jui/DatePicker.php
+1
-1
Selectable.php
extensions/jui/Selectable.php
+2
-2
SliderInput.php
extensions/jui/SliderInput.php
+1
-1
Sortable.php
extensions/jui/Sortable.php
+2
-2
Tabs.php
extensions/jui/Tabs.php
+3
-3
Widget.php
extensions/jui/Widget.php
+1
-1
Captcha.php
framework/captcha/Captcha.php
+2
-2
BaseActiveRecord.php
framework/db/BaseActiveRecord.php
+1
-1
CheckboxColumn.php
framework/grid/CheckboxColumn.php
+2
-2
Column.php
framework/grid/Column.php
+5
-5
DataColumn.php
framework/grid/DataColumn.php
+2
-2
GridView.php
framework/grid/GridView.php
+7
-7
BaseHtml.php
framework/helpers/BaseHtml.php
+59
-58
ActiveField.php
framework/widgets/ActiveField.php
+5
-5
ActiveForm.php
framework/widgets/ActiveForm.php
+1
-1
BaseListView.php
framework/widgets/BaseListView.php
+1
-1
Breadcrumbs.php
framework/widgets/Breadcrumbs.php
+1
-1
DetailView.php
framework/widgets/DetailView.php
+1
-1
InputWidget.php
framework/widgets/InputWidget.php
+1
-1
LinkPager.php
framework/widgets/LinkPager.php
+2
-2
LinkSorter.php
framework/widgets/LinkSorter.php
+1
-1
ListView.php
framework/widgets/ListView.php
+2
-2
MaskedInput.php
framework/widgets/MaskedInput.php
+1
-1
Menu.php
framework/widgets/Menu.php
+2
-2
Pjax.php
framework/widgets/Pjax.php
+1
-1
No files found.
extensions/authclient/widgets/Choice.php
View file @
6fff5662
...
...
@@ -72,7 +72,7 @@ class Choice extends Widget
public
$clientIdGetParamName
=
'authclient'
;
/**
* @var array the HTML attributes that should be rendered in the div HTML tag representing the container element.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'auth-clients'
...
...
extensions/bootstrap/ButtonDropdown.php
View file @
6fff5662
...
...
@@ -39,7 +39,7 @@ class ButtonDropdown extends Widget
public
$label
=
'Button'
;
/**
* @var array the HTML attributes of the button.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
extensions/bootstrap/NavBar.php
View file @
6fff5662
...
...
@@ -44,7 +44,7 @@ class NavBar extends Widget
*
* - tag: string, defaults to "nav", the name of the container tag.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
@@ -52,7 +52,7 @@ class NavBar extends Widget
*
* - tag: string, defaults to "div", the name of the container tag.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$containerOptions
=
[];
/**
...
...
@@ -67,7 +67,7 @@ class NavBar extends Widget
public
$brandUrl
;
/**
* @var array the HTML attributes of the brand link.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$brandOptions
=
[];
/**
...
...
@@ -81,7 +81,7 @@ class NavBar extends Widget
public
$renderInnerContainer
=
true
;
/**
* @var array the HTML attributes of the inner container.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$innerContainerOptions
=
[];
...
...
extensions/bootstrap/Progress.php
View file @
6fff5662
...
...
@@ -69,7 +69,7 @@ class Progress extends Widget
public
$percent
=
0
;
/**
* @var array the HTML attributes of the bar.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$barOptions
=
[];
/**
...
...
extensions/bootstrap/Tabs.php
View file @
6fff5662
...
...
@@ -76,19 +76,19 @@ class Tabs extends Widget
*
* - tag: string, defaults to "div", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
/**
* @var array list of HTML attributes for the header container tags. This will be overwritten
* by the "headerOptions" set in individual [[items]].
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$headerOptions
=
[];
/**
* @var array list of HTML attributes for the tab header link tags. This will be overwritten
* by the "linkOptions" set in individual [[items]].
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$linkOptions
=
[];
/**
...
...
extensions/bootstrap/Widget.php
View file @
6fff5662
...
...
@@ -21,7 +21,7 @@ class Widget extends \yii\base\Widget
{
/**
* @var array the HTML attributes for the widget container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
extensions/jui/Accordion.php
View file @
6fff5662
...
...
@@ -48,7 +48,7 @@ class Accordion extends Widget
*
* - tag: string, defaults to "div", the tag name of the container tag of this widget
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
@@ -72,7 +72,7 @@ class Accordion extends Widget
*
* - tag: string, defaults to "div", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
/**
...
...
@@ -81,7 +81,7 @@ class Accordion extends Widget
*
* - tag: string, defaults to "h3", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$headerOptions
=
[];
...
...
extensions/jui/DatePicker.php
View file @
6fff5662
...
...
@@ -56,7 +56,7 @@ class DatePicker extends InputWidget
public
$inline
=
false
;
/**
* @var array the HTML attributes for the container tag. This is only used when [[inline]] is true.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$containerOptions
=
[];
...
...
extensions/jui/Selectable.php
View file @
6fff5662
...
...
@@ -53,7 +53,7 @@ class Selectable extends Widget
*
* - tag: string, defaults to "ul", the tag name of the container tag of this widget.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
@@ -75,7 +75,7 @@ class Selectable extends Widget
*
* - tag: string, defaults to "li", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
...
...
extensions/jui/SliderInput.php
View file @
6fff5662
...
...
@@ -55,7 +55,7 @@ class SliderInput extends InputWidget
];
/**
* @var array the HTML attributes for the container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$containerOptions
=
[];
...
...
extensions/jui/Sortable.php
View file @
6fff5662
...
...
@@ -43,7 +43,7 @@ class Sortable extends Widget
*
* - tag: string, defaults to "ul", the tag name of the container tag of this widget.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
@@ -65,7 +65,7 @@ class Sortable extends Widget
*
* - tag: string, defaults to "li", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
...
...
extensions/jui/Tabs.php
View file @
6fff5662
...
...
@@ -58,7 +58,7 @@ class Tabs extends Widget
*
* - tag: string, defaults to "div", the tag name of the container tag of this widget.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
@@ -80,13 +80,13 @@ class Tabs extends Widget
*
* - tag: string, defaults to "div", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
/**
* @var array list of HTML attributes for the header container tags. This will be overwritten
* by the "headerOptions" set in individual [[items]].
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$headerOptions
=
[];
/**
...
...
extensions/jui/Widget.php
View file @
6fff5662
...
...
@@ -24,7 +24,7 @@ class Widget extends \yii\base\Widget
public
static
$theme
=
'yii\jui\ThemeAsset'
;
/**
* @var array the HTML attributes for the widget container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
framework/captcha/Captcha.php
View file @
6fff5662
...
...
@@ -41,7 +41,7 @@ class Captcha extends InputWidget
public
$captchaAction
=
'site/captcha'
;
/**
* @var array HTML attributes to be applied to the CAPTCHA image tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$imageOptions
=
[];
/**
...
...
@@ -52,7 +52,7 @@ class Captcha extends InputWidget
public
$template
=
'{image} {input}'
;
/**
* @var array the HTML attributes for the input tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'form-control'
];
...
...
framework/db/BaseActiveRecord.php
View file @
6fff5662
...
...
@@ -19,7 +19,7 @@ use yii\base\InvalidCallException;
/**
* ActiveRecord is the base class for classes representing relational data in terms of objects.
*
* See [[yii\db\ActiveRecord]] for a concrete implementation.
* See [[
\
yii\db\ActiveRecord]] for a concrete implementation.
*
* @property array $dirtyAttributes The changed attribute values (name-value pairs). This property is
* read-only.
...
...
framework/grid/CheckboxColumn.php
View file @
6fff5662
...
...
@@ -14,7 +14,7 @@ use yii\helpers\Html;
/**
* CheckboxColumn displays a column of checkboxes in a grid view.
*
*
*
To add a CheckboxColumn to the [[GridView]], add it to the [[GridView::columns|columns]] configuration as follows:
* To add a CheckboxColumn to the [[GridView]], add it to the [[GridView::columns|columns]] configuration as follows:
*
* ```php
* 'columns' => [
...
...
@@ -45,7 +45,7 @@ class CheckboxColumn extends Column
public
$name
=
'selection'
;
/**
* @var array HTML attributes for the checkboxes.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$checkboxOptions
=
[];
/**
...
...
framework/grid/Column.php
View file @
6fff5662
...
...
@@ -41,12 +41,12 @@ class Column extends Object
public
$visible
=
true
;
/**
* @var array the HTML attributes for the column group tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
* @var array the HTML attributes for the header cell tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$headerOptions
=
[];
/**
...
...
@@ -55,17 +55,17 @@ class Column extends Object
* The signature of the function should be the following: `function ($model, $key, $index, $gridView)`.
* A function may be used to assign different attributes to different rows based on the data in that row.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$contentOptions
=
[];
/**
* @var array the HTML attributes for the footer cell tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$footerOptions
=
[];
/**
* @var array the HTML attributes for the filter cell tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$filterOptions
=
[];
...
...
framework/grid/DataColumn.php
View file @
6fff5662
...
...
@@ -62,7 +62,7 @@ class DataColumn extends Column
/**
* @var array the HTML attributes for the link tag in the header cell
* generated by [[\yii\data\Sort::link]] when sorting is enabled for this column.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$sortLinkOptions
=
[];
/**
...
...
@@ -79,7 +79,7 @@ class DataColumn extends Column
* @var array the HTML attributes for the filter input fields. This property is used in combination with
* the [[filter]] property. When [[filter]] is not set or is an array, this property will be used to
* render the HTML attributes for the generated filter input fields.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$filterInputOptions
=
[
'class'
=>
'form-control'
,
'id'
=>
null
];
...
...
framework/grid/GridView.php
View file @
6fff5662
...
...
@@ -42,29 +42,29 @@ class GridView extends BaseListView
public
$caption
;
/**
* @var array the HTML attributes for the caption element.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
* @see caption
*/
public
$captionOptions
=
[];
/**
* @var array the HTML attributes for the grid table element.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$tableOptions
=
[
'class'
=>
'table table-striped table-bordered'
];
/**
* @var array the HTML attributes for the container tag of the grid view.
* The "tag" element specifies the tag name of the container element and defaults to "div".
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'grid-view'
];
/**
* @var array the HTML attributes for the table header row.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$headerRowOptions
=
[];
/**
* @var array the HTML attributes for the table footer row.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$footerRowOptions
=
[];
/**
...
...
@@ -82,7 +82,7 @@ class GridView extends BaseListView
* - `$index`: the zero-based index of the data model in the model array returned by [[dataProvider]]
* - `$grid`: the GridView object
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$rowOptions
=
[];
/**
...
...
@@ -170,7 +170,7 @@ class GridView extends BaseListView
public
$filterPosition
=
self
::
FILTER_POS_BODY
;
/**
* @var array the HTML attributes for the filter row element.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$filterRowOptions
=
[
'class'
=>
'filters'
];
...
...
framework/helpers/BaseHtml.php
View file @
6fff5662
...
...
@@ -80,6 +80,7 @@ class BaseHtml
'media'
,
];
/**
* Encodes special characters into HTML entities.
* The [[\yii\base\Application::charset|application charset]] will be used for encoding.
...
...
@@ -685,12 +686,12 @@ class BaseHtml
* - options: array, the attributes for the select option tags. The array keys must be valid option values,
* and the array values are the extra attributes for the corresponding option tags. For example,
*
* ~~~
* [
* 'value1' => ['disabled' => true],
* 'value2' => ['label' => 'value 2'],
* ];
* ~~~
*
~~~
*
[
*
'value1' => ['disabled' => true],
*
'value2' => ['label' => 'value 2'],
*
];
*
~~~
*
* - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
* except that the array keys represent the optgroup labels specified in $items.
...
...
@@ -729,12 +730,12 @@ class BaseHtml
* - options: array, the attributes for the select option tags. The array keys must be valid option values,
* and the array values are the extra attributes for the corresponding option tags. For example,
*
* ~~~
* [
* 'value1' => ['disabled' => true],
* 'value2' => ['label' => 'value 2'],
* ];
* ~~~
*
~~~
*
[
*
'value1' => ['disabled' => true],
*
'value2' => ['label' => 'value 2'],
*
];
*
~~~
*
* - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
* except that the array keys represent the optgroup labels specified in $items.
...
...
@@ -792,13 +793,13 @@ class BaseHtml
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
*
* ~~~
* function ($index, $label, $name, $checked, $value)
* ~~~
*
~~~
*
function ($index, $label, $name, $checked, $value)
*
~~~
*
* where $index is the zero-based index of the checkbox in the whole list; $label
* is the label for the checkbox; and $name, $value and $checked represent the name,
* value and the checked status of the checkbox input, respectively.
*
where $index is the zero-based index of the checkbox in the whole list; $label
*
is the label for the checkbox; and $name, $value and $checked represent the name,
*
value and the checked status of the checkbox input, respectively.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
@@ -863,13 +864,13 @@ class BaseHtml
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
*
* ~~~
* function ($index, $label, $name, $checked, $value)
* ~~~
*
~~~
*
function ($index, $label, $name, $checked, $value)
*
~~~
*
* where $index is the zero-based index of the radio button in the whole list; $label
* is the label for the radio button; and $name, $value and $checked represent the name,
* value and the checked status of the radio button input, respectively.
*
where $index is the zero-based index of the radio button in the whole list; $label
*
is the label for the radio button; and $name, $value and $checked represent the name,
*
value and the checked status of the radio button input, respectively.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
@@ -923,12 +924,12 @@ class BaseHtml
* - item: callable, a callback that is used to generate each individual list item.
* The signature of this callback must be:
*
* ~~~
* function ($item, $index)
* ~~~
*
~~~
*
function ($item, $index)
*
~~~
*
* where $index is the array key corresponding to `$item` in `$items`. The callback should return
* the whole list item tag.
*
where $index is the array key corresponding to `$item` in `$items`. The callback should return
*
the whole list item tag.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
@@ -967,12 +968,12 @@ class BaseHtml
* - item: callable, a callback that is used to generate each individual list item.
* The signature of this callback must be:
*
* ~~~
* function ($item, $index)
* ~~~
*
~~~
*
function ($item, $index)
*
~~~
*
* where $index is the array key corresponding to `$item` in `$items`. The callback should return
* the whole list item tag.
*
where $index is the array key corresponding to `$item` in `$items`. The callback should return
*
the whole list item tag.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
@@ -1260,12 +1261,12 @@ class BaseHtml
* - options: array, the attributes for the select option tags. The array keys must be valid option values,
* and the array values are the extra attributes for the corresponding option tags. For example,
*
* ~~~
* [
* 'value1' => ['disabled' => true],
* 'value2' => ['label' => 'value 2'],
* ];
* ~~~
*
~~~
*
[
*
'value1' => ['disabled' => true],
*
'value2' => ['label' => 'value 2'],
*
];
*
~~~
*
* - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
* except that the array keys represent the optgroup labels specified in $items.
...
...
@@ -1309,12 +1310,12 @@ class BaseHtml
* - options: array, the attributes for the select option tags. The array keys must be valid option values,
* and the array values are the extra attributes for the corresponding option tags. For example,
*
* ~~~
* [
* 'value1' => ['disabled' => true],
* 'value2' => ['label' => 'value 2'],
* ];
* ~~~
*
~~~
*
[
*
'value1' => ['disabled' => true],
*
'value2' => ['label' => 'value 2'],
*
];
*
~~~
*
* - groups: array, the attributes for the optgroup tags. The structure of this is similar to that of 'options',
* except that the array keys represent the optgroup labels specified in $items.
...
...
@@ -1361,13 +1362,13 @@ class BaseHtml
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
*
* ~~~
* function ($index, $label, $name, $checked, $value)
* ~~~
*
~~~
*
function ($index, $label, $name, $checked, $value)
*
~~~
*
* where $index is the zero-based index of the checkbox in the whole list; $label
* is the label for the checkbox; and $name, $value and $checked represent the name,
* value and the checked status of the checkbox input.
*
where $index is the zero-based index of the checkbox in the whole list; $label
*
is the label for the checkbox; and $name, $value and $checked represent the name,
*
value and the checked status of the checkbox input.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
@@ -1405,13 +1406,13 @@ class BaseHtml
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
*
* ~~~
* function ($index, $label, $name, $checked, $value)
* ~~~
*
~~~
*
function ($index, $label, $name, $checked, $value)
*
~~~
*
* where $index is the zero-based index of the radio button in the whole list; $label
* is the label for the radio button; and $name, $value and $checked represent the name,
* value and the checked status of the radio button input.
*
where $index is the zero-based index of the radio button in the whole list; $label
*
is the label for the radio button; and $name, $value and $checked represent the name,
*
value and the checked status of the radio button input.
*
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
*
...
...
framework/widgets/ActiveField.php
View file @
6fff5662
...
...
@@ -41,7 +41,7 @@ class ActiveField extends Component
*
* - tag: the tag name of the container element. Defaults to "div".
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'form-group'
];
/**
...
...
@@ -52,7 +52,7 @@ class ActiveField extends Component
/**
* @var array the default options for the input tags. The parameter passed to individual input methods
* (e.g. [[textInput()]]) will be merged with this property when rendering the input tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$inputOptions
=
[
'class'
=>
'form-control'
];
/**
...
...
@@ -62,13 +62,13 @@ class ActiveField extends Component
*
* - tag: the tag name of the container element. Defaults to "div".
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$errorOptions
=
[
'class'
=>
'help-block'
];
/**
* @var array the default options for the label tags. The parameter passed to [[label()]] will be
* merged with this property when rendering the label tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$labelOptions
=
[
'class'
=>
'control-label'
];
/**
...
...
@@ -78,7 +78,7 @@ class ActiveField extends Component
*
* - tag: the tag name of the container element. Defaults to "div".
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$hintOptions
=
[
'class'
=>
'hint-block'
];
/**
...
...
framework/widgets/ActiveForm.php
View file @
6fff5662
...
...
@@ -34,7 +34,7 @@ class ActiveForm extends Widget
public
$method
=
'post'
;
/**
* @var array the HTML attributes (name-value pairs) for the form tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
framework/widgets/BaseListView.php
View file @
6fff5662
...
...
@@ -22,7 +22,7 @@ abstract class BaseListView extends Widget
/**
* @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".
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
framework/widgets/Breadcrumbs.php
View file @
6fff5662
...
...
@@ -53,7 +53,7 @@ class Breadcrumbs extends Widget
public
$tag
=
'ul'
;
/**
* @var array the HTML attributes for the breadcrumb container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'breadcrumb'
];
/**
...
...
framework/widgets/DetailView.php
View file @
6fff5662
...
...
@@ -91,7 +91,7 @@ class DetailView extends Widget
/**
* @var array the HTML attributes for the container tag of this widget. The "tag" option specifies
* what container tag should be used. It defaults to "table" if not set.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'table table-striped table-bordered detail-view'
];
/**
...
...
framework/widgets/InputWidget.php
View file @
6fff5662
...
...
@@ -43,7 +43,7 @@ class InputWidget extends Widget
public
$value
;
/**
* @var array the HTML attributes for the input tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
...
...
framework/widgets/LinkPager.php
View file @
6fff5662
...
...
@@ -35,12 +35,12 @@ class LinkPager extends Widget
public
$pagination
;
/**
* @var array HTML attributes for the pager container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'pagination'
];
/**
* @var array HTML attributes for the link in a pager container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$linkOptions
=
[];
/**
...
...
framework/widgets/LinkSorter.php
View file @
6fff5662
...
...
@@ -35,7 +35,7 @@ class LinkSorter extends Widget
/**
* @var array HTML attributes for the sorter container tag.
* @see \yii\helpers\Html::ul() for special attributes.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'sorter'
];
...
...
framework/widgets/ListView.php
View file @
6fff5662
...
...
@@ -22,7 +22,7 @@ class ListView extends BaseListView
* @var array the HTML attributes for the container of the rendering result of each data model.
* 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.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
/**
...
...
@@ -56,7 +56,7 @@ class ListView extends BaseListView
/**
* @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".
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'list-view'
];
...
...
framework/widgets/MaskedInput.php
View file @
6fff5662
...
...
@@ -63,7 +63,7 @@ class MaskedInput extends InputWidget
public
$completed
;
/**
* @var array the HTML attributes for the input tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[
'class'
=>
'form-control'
];
...
...
framework/widgets/Menu.php
View file @
6fff5662
...
...
@@ -75,7 +75,7 @@ class Menu extends Widget
*
* - tag: string, defaults to "li", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$itemOptions
=
[];
/**
...
...
@@ -125,7 +125,7 @@ class Menu extends Widget
*
* - tag: string, defaults to "ul", the tag name of the item container tags.
*
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
framework/widgets/Pjax.php
View file @
6fff5662
...
...
@@ -45,7 +45,7 @@ class Pjax extends Widget
{
/**
* @var array the HTML attributes for the widget container tag.
*
See [[\yii\helpers\Html::renderTagAttributes()]]
for details on how attributes are being rendered.
*
@see \yii\helpers\Html::renderTagAttributes()
for details on how attributes are being rendered.
*/
public
$options
=
[];
/**
...
...
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