yadjet/yii2-tagged-behavior

为 Yii2 标签行为

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

This package is auto-updated.

Last update: 2024-09-10 19:59:15 UTC


README

Yii2 标签行为

安装

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

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

使用

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