yadjet/yii2-tagged-behavior

Tag behaviors For Yii2

dev-master 2016-02-15 05:40 UTC

This package is auto-updated.

Last update: 2024-05-10 19:23:21 UTC


README

Yii2 Tagged Behavior

安装

使用 composer,在命令行下使用以下命令:

composer require "yadjet/yii2-tagged-behavior:dev-master" 

使用

public function behaviors() {
    return array_merge(parent::behaviors(), [
        [
            'class' => TaggedBehavior::className(),
            'attribute' => 'tags',
        ],
    ]);
}