mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 22:39:52 +08:00
Merge pull request #708 from lucianobaraglia/master
Minor doc and messages fixes [skip ci]
This commit is contained in:
@@ -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
|
|||||||
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
|
|||||||
} 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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user