demmonico/yii2-behaviors

Yii2 行为库

安装次数: 2,274

依赖: 1

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 1

公开问题: 0

类型:yii2-extension

1.0.0 2016-08-22 15:26 UTC

This package is not auto-updated.

Last update: 2024-09-24 23:24:21 UTC


README

#Yii2 行为库 ##描述 Yii2 行为库,用于网络应用程序开发。

##组成 ###SanitizeBehavior

清理模型字符串属性(默认情况下所有字符串属性)。您可以排除一些字段或允许一些HTML标签。

#####用法

// in model ActiveRecord
public function behaviors()
{
    return [
        SanitizeBehavior::className(),
    ];
}

###TimestampBehavior 扩展标准yii类,以与不必要属性一起使用。

#####用法

// in model ActiveRecord
public function behaviors()
{
    return [
        TimestampBehavior::className(),
    ];
}