17 lines
830 B
PHP
17 lines
830 B
PHP
<?php
|
||
|
||
class Page extends Item {
|
||
public string $title = "Страницы";
|
||
public string $description = "Управление страницами на сайте.";
|
||
public string $icon = "explore";
|
||
public function __construct($item_id)
|
||
{
|
||
parent::__construct($item_id);
|
||
$this->props = array(
|
||
"seo_title" => new Prop($this, "seo_title", '', "СЕО-заголовок", false, "plain_text"),
|
||
"seo_description" => new Prop($this, "seo_description", '', "СЕО-описание", false, "plain_text"),
|
||
"seo_keywords" => new Prop($this, "seo_keywords", '', "СЕО-keywords", false, "plain_text"),
|
||
"template_script" => new Prop($this, "template_script", "pages/default.php", "Скрипт страницы", false, "plain_text"),
|
||
);
|
||
}
|
||
} |