title = $page->title; $this->slug = $page->slug; $this->content = $page->content; $this->parentId = $page->parent ? $page->parent->id : null; $this->meta = new MetaForm($page->meta); $this->_page = $page; } else { $this->meta = new MetaForm(); } parent::__construct($config); } public function rules(): array { return [ [['title'], 'required'], [['parentId'], 'integer'], [['title', 'slug'], 'string', 'max' => 255], [['content'], 'string'], ['slug', SlugValidator::class], [['slug'], 'unique', 'targetClass' => Page::class, 'filter' => function (ActiveQuery $query) { if ($this->type != Page::TYPE_PUBLIC) { $query->andWhere($this->type . '=' . Page::TYPE_PUBLIC); } $query->andWhere(['type' => Page::TYPE_PUBLIC]); if ($this->_page) { $query->andWhere(['<>', 'id', $this->_page->id]); } return $query; }], ]; } public function attributeLabels() { return [ 'title' => Yii::t('pages', 'Title'), 'slug' => Yii::t('pages', 'Slug'), 'id' => Yii::t('pages', 'ID'), 'content' => Yii::t('pages', 'Content'), 'parentId' => Yii::t('pages', 'Parent Page'), ]; } public function attributeHints() { return [ 'slug' => Yii::t('pages', 'SEO link will be generated automatically if not specified'), ]; } public function parentsList(): array { return ArrayHelper::map(Page::find()->andWhere(['tree' => 1])->orderBy('lft')->asArray()->all(), 'id', function (array $page) { return ($page['depth'] > 1 ? str_repeat('-- ', $page['depth'] - 1) . ' ' : '') . $page['title']; }); } public function internalForms(): array { return ['meta']; } }