Browse Source

Added "Setting component defaults classwide" to docs

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
951da01c9d
  1. 16
      docs/guide/configuration.md

16
docs/guide/configuration.md

@ -96,4 +96,18 @@ not be instantiated and configured at all.
Setting component defaults classwide Setting component defaults classwide
------------------------------------ ------------------------------------
TBD For each component you can specifiy classwide defaults. For example, if we want to change class for all `LinkPager`
widgets without specifying it over and over again when widget is called we can do it like the following:
```php
\Yii::$objectConfig = [
'yii\widgets\LinkPager' => [
'options' => [
'class' => 'pagination',
],
],
];
```
The code above should be executed once before `LinkPager` widget is used. It can be done in `index.php`, application
config or anywhere else.
Loading…
Cancel
Save