| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | <?phpnamespace common\models;/** * This is the model class for table "pop_meta". * * @property integer $id * @property string $title * @property string $keywords * @property string $description * @property string $entity * @property integer $entity_id */class Meta extends \yii\db\ActiveRecord{    /**     * @inheritdoc     */    public static function tableName()    {        return '{{%meta}}';    }    /**     * @inheritdoc     */    public function rules()    {        return [            [['entity_id'], 'integer'],            [['title', 'keywords', 'description', 'entity'], 'string', 'max' => 128],        ];    }    /**     * @inheritdoc     */    public function attributeLabels()    {        return [            'id' => 'ID',            'title' => 'Title',            'keywords' => 'Keywords',            'description' => 'Description',            'entity' => 'entity',            'entity_id' => 'entity ID',        ];    }}
 |