1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace app\models\base;
- use Yii;
- /**
- * This is the model class for table "gallery_item".
- *
- * @property int $id
- * @property string|null $name
- * @property string|null $description
- * @property string|null $created_at
- * @property int|null $gallery_id
- * @property string|null $path
- * @property string|null $ext
- *
- * @property Gallery $gallery
- */
- class GalleryItem extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'gallery_item';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['created_at'], 'safe'],
- [['gallery_id'], 'integer'],
- [['name', 'description', 'path', 'ext'], 'string', 'max' => 255],
- [['gallery_id'], 'exist', 'skipOnError' => true, 'targetClass' => Gallery::class, 'targetAttribute' => ['gallery_id' => 'id']],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'name' => 'Name',
- 'description' => 'Description',
- 'created_at' => 'Created At',
- 'gallery_id' => 'Gallery ID',
- 'path' => 'Path',
- 'ext' => 'Ext',
- ];
- }
- /**
- * Gets query for [[Gallery]].
- *
- * @return \yii\db\ActiveQuery
- */
- public function getGallery()
- {
- return $this->hasOne(Gallery::class, ['id' => 'gallery_id']);
- }
- }
|