定制 yii2mod/yii2-toggle-column 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

yii2mod/yii2-toggle-column

最新稳定版本:1.1

Composer 安装命令:

composer require yii2mod/yii2-toggle-column

包简介

Provides a toggle data column and action

README 文档

README

Toggle Column Widget for Yii 2


Provides a toggle data column and action for Yii Framework 2.0

Latest Stable Version Total Downloads License Build Status

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yii2mod/yii2-toggle-column "*"

or add

"yii2mod/yii2-toggle-column": "*"

to the require section of your composer.json file.

Usage

  1. In your GridView columns section:
[
    'class' => '\yii2mod\toggle\ToggleColumn',
    'attribute' => 'active',
],
  1. Add toggle action to your controller as follows:
public function actions()
{
   return [
        'toggle' => [
            'class' => \yii2mod\toggle\actions\ToggleAction::class,
            'modelClass' => 'path\to\your\Model',
            // if you want to use flash messages
            'setFlash' => true,
            'flashSuccess' => 'Success message',
            'flashError' => 'Error message',
            'redirect' => 'some-redirect-url',
            // if you want to use custom code before saving the model
            'preProcess' => function() {
                // your custom code
            }
        ],
    ];
}

统计信息

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

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-04