35 string $a_parent_type,
38 bool $a_prevent_get_id =
false,
43 $this->tpl = $DIC[
"tpl"];
44 $this->
ctrl = $DIC->ctrl();
45 $this->
tabs = $DIC->tabs();
46 $this->
lng = $DIC->language();
54 $this->layout_object->readObject();
59 "LOCATION_CONTENT_STYLESHEET",
72 $next_class = $this->
ctrl->getNextClass($this);
74 switch ($next_class) {
76 return parent::executeCommand();
79 $html = parent::executeCommand();
93 string $a_mode =
"save",
103 $this->tpl->setContent($a_form->getHTML());
113 $form_gui->setFormAction($ilCtrl->getFormAction($this));
114 $form_gui->setTitle(
$lng->
txt(
"cont_ed_pglprop"));
118 $title_input->setSize(50);
119 $title_input->setMaxLength(128);
120 $title_input->setValue($this->layout_object->title);
121 $title_input->setTitle(
$lng->
txt(
"title"));
122 $title_input->setRequired(
true);
126 $desc_input->
setValue($this->layout_object->description);
127 $desc_input->setRows(3);
128 $desc_input->setCols(37);
129 $desc_input->setTitle(
$lng->
txt(
"description"));
130 $desc_input->setRequired(
false);
135 $mods->
setValue($this->layout_object->getModules());
138 $mods->addOption($mod);
141 $form_gui->addItem($title_input);
142 $form_gui->addItem($desc_input);
143 $form_gui->addItem($mods);
145 $form_gui->addCommandButton(
"updateProperties",
$lng->
txt($a_mode));
161 $this->layout_object->setTitle(
$form->
getInput(
'pgl_title'));
162 $this->layout_object->setDescription(
$form->
getInput(
'pgl_desc'));
164 $this->layout_object->update();
166 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"saved_successfully"));
179 $ilCtrl->setParameterByClass(
"ilpagelayoutgui",
"obj_id", $this->obj->getId());
182 $this->
lng->txt(
"settings"),
183 $ilCtrl->getLinkTarget($this,
"properties")
193 public static function getTemplateSelection(
string $module): ?
Radio 198 $lng = $DIC->language();
200 if (count($arr_templates) == 0) {
203 $radio =
$f->input()->field()->radio(
$lng->
txt(
"cont_page_template"),
"");
206 foreach ($arr_templates as $templ) {
208 $first = $templ->getId();
210 $templ->readObject();
211 $radio = $radio->withOption($templ->getId(), $templ->getPreview(), $templ->getTitle());
213 $radio = $radio->withValue($first);
219 $this->
ctrl->redirectByClass(
"ilpagelayoutadministrationgui",
"listLayouts");
properties(string $a_mode="save", ilPropertyFormGUI $a_form=null)
Edit page layout properties.
static getPlaceHolderStylePath()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Class ilPageLayoutGUI GUI class.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setTabs(ilTabsGUI $a_tabs=null)
output tabs
setVariable(string $variable, $value='')
Sets the given variable to the given value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPageLayout $layout_object
setTitleIcon(string $a_icon_path, string $a_icon_desc="")
set title icon
setTabActive(string $a_id)
setValue(string $a_value)
static activeLayouts(int $a_module=0)
Get active layouts.
ilGlobalTemplateInterface $tpl
static getAvailableModules()
static getSyntaxStylePath()
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
__construct(Container $dic, ilPlugin $plugin)
setDescription(string $a_descr)
Sets description below title in standard template.
This class represents a text area property in a property form.
__construct(string $a_parent_type, int $a_id=0, int $a_old_nr=0, bool $a_prevent_get_id=false, string $a_lang="")
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.