Load the Yii-Bootstrap Extension on Specific Actions

Comparing #2 with #3

Revision #3 was created by chuntley chuntley on Dec 17, 2012, 3:10:34 PM.

More explanation on preventing bootstrap loading on delete action

Content

[...]
);
}

```

This will load bootstrap for all actions in the controller, other than the "delete" action.
 By default the "delete" action does not render a view, which allows us to safely skip bootstrap loading on that action. If you wanted to disable loading bootstrap for another specific action, do the following:


```php
array('ext.bootstrap.filters.BootstrapFilter - delete, uploadajax')
```
[...]