You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.4 KiB

7 years ago
<?php
namespace common\modules\pages\forms;
7 years ago
use core\forms\CompositeForm;
use core\forms\MetaForm;
use common\modules\pages\entities\Page;
7 years ago
use core\validators\SlugValidator;
use yii\db\ActiveQuery;
7 years ago
use yii\helpers\ArrayHelper;
use Yii;
/**
* @property MetaForm $meta;
*/
class PageForm extends CompositeForm
{
public $type;
7 years ago
public $title;
public $slug;
public $content;
public $parentId;
public $_page;
7 years ago
public function __construct(Page $page = null, $config = [])
{
if ($page) {
$this->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'],
7 years ago
[['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;
}],
7 years ago
];
}
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'),
7 years ago
];
}
public function attributeHints() {
return [
'slug' => Yii::t('pages', 'SEO link will be generated automatically if not specified'),
];
}
public function parentsList(): array
7 years ago
{
return ArrayHelper::map(Page::find()->andWhere(['tree' => 1])->orderBy('lft')->asArray()->all(), 'id', function (array $page) {
7 years ago
return ($page['depth'] > 1 ? str_repeat('-- ', $page['depth'] - 1) . ' ' : '') . $page['title'];
});
}
public function internalForms(): array
{
return ['meta'];
}
}