承接 marqu3s/yii2-behaviors 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

marqu3s/yii2-behaviors

最新稳定版本:v0.3.7

Composer 安装命令:

composer require marqu3s/yii2-behaviors

包简介

Collection of Yii2 behaviors

README 文档

README

Installation

The preferred way to install this extension is through composer. Either run:

php composer.phar require --prefer-dist marqu3s/yii2-behaviors "*" 

or add

"marqu3s/yii2-behaviors": "*" 

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.

public function behaviors() { return [ 'saveGridPage' => [ 'class' => SaveGridPaginationBehavior::class, 'sessionVarName' => self::class . 'GridPage', 'sessionPageSizeName' => self::class . 'GridPageSize' ] ]; }

Then, on your search() method, set the grid current page using one of these:

$dataProvider = new ActiveDataProvider( [ 'query' => $query, 'sort' => ..., 'pagination' => [ 'page' => $this->getGridPage(), // <- Prefered method 'pageSize' => $this->getGridPageSize(), ... ] ] );

OR

$dataProvider->pagination->page = $this->getGridPage();

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.

public function behaviors() { return [ 'saveGridFilters' => [ 'class' => SaveGridFiltersBehavior::class, 'sessionVarName' => self::class . 'GridFilters' ] ]; }

Then, on your search() method, replace $this->load() by $dataProvider = $this->loadWithFilters($params, $dataProvider):

$dataProvider = new ActiveDataProvider( [ 'query' => $query, 'sort' => ..., 'pagination' => [ 'page' => $this->getGridPage(), // <- Prefered method 'pageSize' => $this->getGridPageSize(), ... ] ] ); //$this->load($params); // <-- Replace or comment this $dataProvider = $this->loadWithFilters($params, $dataProvider); // From SaveGridFiltersBehavior

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.

public function behaviors() { return [ 'saveGridOrder' => [ 'class' => SaveGridOrderBehavior::class, 'sessionVarName' => self::class . 'GridOrder' ] ]; }

Then, on yout search() method, set the grid current order using these code:

$dataProvider->sort->attributeOrders = $this->getGridOrder();

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.

public function behaviors() { return [ 'LogChanges' => [ 'class' => LogChangesBehavior::class, // Customization 'valuesReplacement' => [ 'active' => [ 0 => 'No', 1 => 'Yes', ] ], 'currencyAttributes' => [ 'subtotal', 'total', 'tax' ] ], ]; }

That's all!

统计信息

  • 总下载量: 10.21k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 5
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固