| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 | <?phpnamespace common\models;use common\behaviors\CacheInvalidateBehavior;use Yii;use yii\behaviors\TimestampBehavior;use yii\caching\TagDependency;/** * This is the model class for table "{{%module}}". * * @property integer $id * @property string $name * @property string $title * @property integer $status * @property string $author * @property integer $type * @property string $desc * @property string $config * @property integer $created_at * @property integer $updated_at */class Module extends \yii\db\ActiveRecord{    const STATUS_OPEN = 1;    const STATUS_CLOSE = 0;    const TYPE_CORE = 1;    const TYPE_PLUGIN = 2;    /**     * @inheritdoc     */    public static function tableName()    {        return '{{%module}}';    }    /**     * @inheritdoc     */    public function rules()    {        return [            [['id', 'name'], 'required'],            [['status', 'type'], 'integer'],            [['type'], 'in', 'range' => [1,2]],            [['name'], 'string', 'max' => 50],            [['bootstrap'], 'string', 'max' => 128],            [['config'], 'string'],            ['status', 'default', 'value' => 1],            [['id'], 'unique'],        ];    }    /**     * @inheritdoc     */    public function attributeLabels()    {        return [            'id' => 'ID',            'name' => '名称',            'bootstrap' => '初始化的应用',            'status' => '是否启用',            'config' => '配置',            'created_at' => '创建时间',            'updated_at' => '更新时间',        ];    }    public function behaviors()    {        return [            TimestampBehavior::className(),            [                'class' => CacheInvalidateBehavior::className(),                'keys' => [                    ['modules', self::TYPE_CORE],                    ['modules', self::TYPE_PLUGIN],                ]            ]        ];    }    public static function findOpenModules($type = null)    {        $modules = Yii::$app->cache->get(['modules', $type]);        if ($modules === false) {            $query = static::find();            $modules = $query->where(['status' => self::STATUS_OPEN])->andFilterWhere(['type' => $type])->all();            Yii::$app->cache->set(['modules', $type], $modules, 0);        }        return $modules;    }    public function getInstall()    {        return $this->isNewRecord ? false : true;    }    public function getOpen()    {        return $this->status == self::STATUS_OPEN;    }}
 |