Commit 58eb23d3 by Alexander Makarov

Merge pull request #708 from lucianobaraglia/master

Minor doc and messages fixes [skip ci]
parents b31b02a5 8760407c
...@@ -55,7 +55,7 @@ class Carousel extends Widget ...@@ -55,7 +55,7 @@ class Carousel extends Widget
* // required, slide content (HTML), such as an image tag * // required, slide content (HTML), such as an image tag
* 'content' => '<img src="http://twitter.github.io/bootstrap/assets/img/bootstrap-mdo-sfmoma-01.jpg"/>', * 'content' => '<img src="http://twitter.github.io/bootstrap/assets/img/bootstrap-mdo-sfmoma-01.jpg"/>',
* // optional, the caption (HTML) of the slide * // optional, the caption (HTML) of the slide
* 'caption'=> '<h4>This is title</h4><p>This is the caption text</p>', * 'caption' => '<h4>This is title</h4><p>This is the caption text</p>',
* // optional the HTML attributes of the slide container * // optional the HTML attributes of the slide container
* 'options' => array(), * 'options' => array(),
* ) * )
......
...@@ -23,7 +23,7 @@ use yii\helpers\Html; ...@@ -23,7 +23,7 @@ use yii\helpers\Html;
* 'Collapsible Group Item #1' => array( * 'Collapsible Group Item #1' => array(
* 'content' => 'Anim pariatur cliche...', * 'content' => 'Anim pariatur cliche...',
* // open its content by default * // open its content by default
* 'contentOptions' => array('class'=>'in') * 'contentOptions' => array('class' => 'in')
* ), * ),
* // another group item * // another group item
* 'Collapsible Group Item #2' => array( * 'Collapsible Group Item #2' => array(
...@@ -51,9 +51,9 @@ class Collapse extends Widget ...@@ -51,9 +51,9 @@ class Collapse extends Widget
* // required, the content (HTML) of the group * // required, the content (HTML) of the group
* 'content' => 'Anim pariatur cliche...', * 'content' => 'Anim pariatur cliche...',
* // optional the HTML attributes of the content group * // optional the HTML attributes of the content group
* 'contentOptions'=> array(), * 'contentOptions' => array(),
* // optional the HTML attributes of the group * // optional the HTML attributes of the group
* 'options'=> array(), * 'options' => array(),
* ) * )
* ``` * ```
*/ */
......
...@@ -136,7 +136,7 @@ class Nav extends Widget ...@@ -136,7 +136,7 @@ class Nav extends Widget
if (is_array($items)) { if (is_array($items)) {
$items = Dropdown::widget(array( $items = Dropdown::widget(array(
'items' => $items, 'items' => $items,
'encodeLabels'=>$this->encodeLabels, 'encodeLabels' => $this->encodeLabels,
'clientOptions' => false, 'clientOptions' => false,
)); ));
} }
......
...@@ -87,7 +87,7 @@ class NavBar extends Widget ...@@ -87,7 +87,7 @@ class NavBar extends Widget
* // optional, the menu item class type of the widget to render. Defaults to "Nav" widget. * // optional, the menu item class type of the widget to render. Defaults to "Nav" widget.
* 'class' => 'Menu item class type', * 'class' => 'Menu item class type',
* // required, the configuration options of the widget. * // required, the configuration options of the widget.
* 'options'=> array(...), * 'options' => array(...),
* ), * ),
* // optionally, you can pass a string * // optionally, you can pass a string
* '<form class="navbar-search pull-left" action="">' . * '<form class="navbar-search pull-left" action="">' .
......
...@@ -47,7 +47,7 @@ use yii\helpers\Html; ...@@ -47,7 +47,7 @@ use yii\helpers\Html;
* echo Progress::widget(array( * echo Progress::widget(array(
* 'bars' => array( * 'bars' => array(
* array('percent' => 30, 'options' => array('class' => 'bar-danger')), * array('percent' => 30, 'options' => array('class' => 'bar-danger')),
* array('percent' => 30, 'label'=>'test', 'options' => array('class' => 'bar-success')), * array('percent' => 30, 'label' => 'test', 'options' => array('class' => 'bar-success')),
* array('percent' => 35, 'options' => array('class' => 'bar-warning')) * array('percent' => 35, 'options' => array('class' => 'bar-warning'))
* ) * )
* )); * ));
......
...@@ -28,7 +28,7 @@ use yii\helpers\Html; ...@@ -28,7 +28,7 @@ use yii\helpers\Html;
* 'label' => 'Two', * 'label' => 'Two',
* 'content' => 'Anim pariatur cliche...', * 'content' => 'Anim pariatur cliche...',
* 'headerOptions' => array(...), * 'headerOptions' => array(...),
* 'options' => array('id'=>'myveryownID'), * 'options' => array('id' => 'myveryownID'),
* ), * ),
* array( * array(
* 'label' => 'Dropdown', * 'label' => 'Dropdown',
......
...@@ -21,7 +21,7 @@ use yii\helpers\Inflector; ...@@ -21,7 +21,7 @@ use yii\helpers\Inflector;
* DetailView displays the detail of a single data [[model]]. * DetailView displays the detail of a single data [[model]].
* *
* DetailView is best used for displaying a model in a regular format (e.g. each model attribute * DetailView is best used for displaying a model in a regular format (e.g. each model attribute
* is displayed as a row in a table.) The model can be either an instance of [[Model]] or * is displayed as a row in a table.) The model can be either an instance of [[Model]]
* or an associative array. * or an associative array.
* *
* DetailView uses the [[attributes]] property to determines which model attributes * DetailView uses the [[attributes]] property to determines which model attributes
...@@ -105,7 +105,7 @@ class DetailView extends Widget ...@@ -105,7 +105,7 @@ class DetailView extends Widget
public function init() public function init()
{ {
if ($this->model === null) { if ($this->model === null) {
throw new InvalidConfigException('Please specify the "data" property.'); throw new InvalidConfigException('Please specify the "model" property.');
} }
if ($this->formatter == null) { if ($this->formatter == null) {
$this->formatter = Yii::$app->getFormatter(); $this->formatter = Yii::$app->getFormatter();
...@@ -166,7 +166,7 @@ class DetailView extends Widget ...@@ -166,7 +166,7 @@ class DetailView extends Widget
} elseif (is_array($this->model)) { } elseif (is_array($this->model)) {
$this->attributes = array_keys($this->model); $this->attributes = array_keys($this->model);
} else { } else {
throw new InvalidConfigException('The "data" property must be either an array or an object.'); throw new InvalidConfigException('The "model" property must be either an array or an object.');
} }
sort($this->attributes); sort($this->attributes);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment