Класс Photo
Объект $Photo:
Объект «Фотография»
Исходный код
class Photo extends \Cms\Site\Page { … }
Методы
register()
$Photo->register($Main);
Исходный код
function register($Main) {
return array(
"table" => "image",
"title" => "Фотография",
);
}
getDefaultId()
$Photo->getDefaultId();
ID страницы по умолчанию
Смотрите описание Cms::Root::Main::getDefaultId()
Исходный код
function getDefaultId() {
$Main = $this->Main();
$parent = strlen($this->parent) ? $this->parent : $_REQUEST['parent'];
$id = trim(trim($parent, "/") . "/" . $Main->getDefaultN(), "/");
if (substr_count($id, "/")) $id = "/$id";
return $id;
}