4 include_once(
"./Services/COPage/classes/class.ilPageObjectGUI.php");
5 include_once(
"./Modules/Scorm2004/classes/class.ilSCORM2004Page.php");
35 public function __construct($a_parent_type, $a_id = 0, $a_old_nr = 0, $a_prevent_get_id =
false, $a_lang =
"")
39 $this->tpl = $DIC[
"tpl"];
40 $this->ctrl = $DIC->ctrl();
41 $this->tabs = $DIC->tabs();
42 $this->lng = $DIC->language();
49 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayout.php");
52 $this->layout_object->readObject();
55 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
56 $tpl->setCurrentBlock(
"ContentStyle");
58 "LOCATION_CONTENT_STYLESHEET",
61 $tpl->parseCurrentBlock();
66 $this->
setStyleId($this->layout_object->getStyleId());
76 $next_class = $this->ctrl->getNextClass($this);
77 $cmd = $this->ctrl->getCmd();
79 switch ($next_class) {
81 return parent::executeCommand();
84 case "ilpageobjectgui":
85 die(
"ilPageLayoutGUI forward to ilpageobjectgui error.");
89 $html = parent::executeCommand();
108 $ilTabs->setTabActive(
'properties');
114 $this->tpl->setContent($a_form->getHTML());
123 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
125 $form_gui->setFormAction(
$ilCtrl->getFormAction($this));
126 $form_gui->setTitle(
$lng->txt(
"cont_ed_pglprop"));
130 $title_input->setSize(50);
131 $title_input->setMaxLength(128);
132 $title_input->setValue($this->layout_object->title);
133 $title_input->setTitle(
$lng->txt(
"title"));
134 $title_input->setRequired(
true);
138 $desc_input->
setValue($this->layout_object->description);
139 $desc_input->setRows(3);
140 $desc_input->setCols(37);
141 $desc_input->setTitle(
$lng->txt(
"description"));
142 $desc_input->setRequired(
false);
147 $mods->
setValue($this->layout_object->getModules());
150 $mods->addOption($mod);
153 $form_gui->addItem($title_input);
154 $form_gui->addItem($desc_input);
155 $form_gui->addItem($mods);
158 $fixed_style =
$ilSetting->get(
"fixed_content_style_id");
159 $style_id = $this->layout_object->getStyleId();
161 if ($fixed_style > 0) {
164 $this->lng->txt(
"global_fixed") .
")");
165 $form_gui->addItem($st);
167 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
169 $st_styles[0] = $this->lng->txt(
"default");
172 $style_sel->setOptions($st_styles);
173 $style_sel->setValue($style_id);
174 $form_gui->addItem($style_sel);
177 $form_gui->addCommandButton(
"updateProperties",
$lng->txt($a_mode));
190 if (!$form->checkInput()) {
191 $form->setValuesByPost();
195 $this->layout_object->setTitle($form->getInput(
'pgl_title'));
196 $this->layout_object->setDescription($form->getInput(
'pgl_desc'));
197 $this->layout_object->setStyleId($form->getInput(
'style_id'));
198 $this->layout_object->setModules($form->getInput(
'module'));
199 $this->layout_object->update();
215 $ilCtrl->setParameterByClass(
"ilpagelayoutgui",
"obj_id", $this->obj->getId());
218 $ilCtrl->getLinkTarget($this,
"properties"),
219 array(
"properties",
"",
""),
224 $tpl->setTitle($this->layout_object->getTitle());
225 $tpl->setDescription(
"");
234 public static function getTemplateSelection(
string $module)
239 $lng = $DIC->language();
241 if (count($arr_templates) == 0) {
244 $radio =
$f->input()->field()->radio(
$lng->txt(
"cont_page_template"),
"");
247 foreach ($arr_templates as $templ) {
249 $first = (int) $templ->getId();
251 $templ->readObject();
252 $radio = $radio->withOption($templ->getId(), $templ->getPreview(), $templ->getTitle());
254 $radio = $radio->withValue((
int) $first);
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
__construct($a_parent_type, $a_id=0, $a_old_nr=0, $a_prevent_get_id=false, $a_lang="")
Constructor.
static getPlaceHolderStylePath()
get placeholder style path (for Page Layouts)
setTabs($a_tabs="")
output tabs
setValue($a_value)
Set Value.
This class represents an option in a checkbox group.
Class ilPageLayoutGUI GUI class.
setValue($a_value)
Set Value.
static _lookupTitle($a_id)
lookup object title
static _getStandardStyles( $a_exclude_default_style=false, $a_include_deactivated=false, $a_scope=0)
Get standard styles.
executeCommand()
execute command
updateProperties()
Update properties.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
properties($a_mode="save", $a_form=null)
Edit page layout properties.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static getAvailableModules()
static getSyntaxStylePath()
get syntax style path
setStyleId($a_styleid)
Set Style Id.
This class represents a non editable value in a property form.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static activeLayouts($a_special_page=false, $a_module=null)
Get active layouts.