Added "Setting component defaults classwide" to docs

This commit is contained in:
Alexander Makarov
2013-11-29 23:36:29 +04:00
parent c5108b25f7
commit 951da01c9d

View File

@@ -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.