| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | 
							- <?php
 
- namespace common\models;
 
- use common\behaviors\CacheInvalidateBehavior;
 
- use Yii;
 
- use yii\db\ActiveRecord;
 
- /**
 
-  * This is the model class for table "carousel".
 
-  *
 
-  * @property integer $id
 
-  * @property string $key
 
-  * @property string $title
 
-  * @property integer $status
 
-  *
 
-  * @property CarouselItem[] $items
 
-  */
 
- class Carousel extends ActiveRecord
 
- {
 
-     const STATUS_DRAFT = 0;
 
-     const STATUS_ACTIVE = 1;
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public static function tableName()
 
-     {
 
-         return '{{%carousel}}';
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function behaviors()
 
-     {
 
-         return [
 
-             'cacheInvalidate' => [
 
-                 'class' => CacheInvalidateBehavior::className(),
 
-                 'keys' => [
 
-                     function ($model) {
 
-                         return [
 
-                             self::className(),
 
-                             $model->key
 
-                         ];
 
-                     }
 
-                 ]
 
-             ]
 
-         ];
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function rules()
 
-     {
 
-         return [
 
-             [['key'], 'required'],
 
-             [['key'], 'unique'],
 
-             [['status'], 'integer'],
 
-             [['key', 'title'], 'string', 'max' => 255]
 
-         ];
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      */
 
-     public function attributeLabels()
 
-     {
 
-         return [
 
-             'id' => Yii::t('common', 'ID'),
 
-             'key' => Yii::t('common', 'Key'),
 
-             'title' => '位置',
 
-             'status' => Yii::t('common', 'Active'),
 
-         ];
 
-     }
 
-     /**
 
-      * @return \yii\db\ActiveQuery
 
-      */
 
-     public function getItems()
 
-     {
 
-         return $this->hasMany(CarouselItem::className(), ['carousel_id' => 'id']);
 
-     }
 
- }
 
 
  |