Files
BiveEngine/playarea/scripts/settings/about_page.php
2025-12-24 19:19:01 +03:00

15 lines
741 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// О компании
// Описание и регистрация полей
$about_images = new Multifield(array("fields" => array("image" => array("plain_image", "Изображение"), "class" => array("plain_text", "CSS"))));
$b->field_register("about_images", $about_images);
$setting_page = new SettingPage("settings", "settings_about_page","О компании", array());
$setting_page->add($b->setting_register("about_page_background", "Фон страницы", "plain_image"));
$setting_page->add($b->setting_register("about_page_logotype", "Логотип", "plain_image"));
$setting_page->add($b->setting_register("about_images", "Список изображений", "about_images"));
$setting_page->create();