Download the PHP package marqu3s/yii2-behaviors without Composer
On this page you can find all versions of the php package marqu3s/yii2-behaviors. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download marqu3s/yii2-behaviors
More information about marqu3s/yii2-behaviors
Files in marqu3s/yii2-behaviors
Package yii2-behaviors
Short Description Collection of Yii2 behaviors
License MIT
Homepage https://github.com/marqu3s/yii2-behaviors
Informations about the package yii2-behaviors
Yii2 Behaviors
Installation
The preferred way to install this extension is through composer. Either run:
or add
to the require section of your composer.json file.
Available Behaviors
GRID
SaveGridPaginationBehavior
Saves the grid's current page and pageSize in PHP Session so you can restore it later automatically when revisiting the page where the grid is.
Usage: On the model that will be used to generate the dataProvider that will populate the grid, attach this behavior.
Then, on your search() method, set the grid current page using one of these:
OR
SaveGridFiltersBehavior
Saves the Grid's current filters in PHP Session on every request and use [[loadWithFilters()]] to get the current filters and assign it to the grid.
Usage: On the model that will be used to generate the dataProvider that will populate the grid, attach this behavior.
Then, on your search() method, replace $this->load() by $dataProvider = $this->loadWithFilters($params, $dataProvider):
SaveGridOrderBehavior
Saves the Grid's current order criteria in PHP Session.
Usage: On the model that will be used to generate the dataProvider that will populate the grid, attach this behavior.
Then, on yout search() method, set the grid current order using these code:
ActiveRecord
LogChangesBehavior
Creates a log everytime a model is created or updated. The log entry contains all changed attributes, their old and new values.
Install: Create the necessary table by using the log_active_record.sql script or by copying the migration script to your migration directory and execute yii migrate
.
If you want to use your own table, with your own naming conventions, you can customize the behaviour with your table name and columns.
Usage: add it to the behaviors() method of your ActiveRecord model and customize it using it´s attributes.
OPTIONAL: You may implement LogChangesInterface in your ActiveRecord and create a custom getDeletedRecordText()
that returns a custom log message when a record is deleted.
That's all!