47 $this->
ctrl = $DIC->ctrl();
48 $this->rbacsystem = $DIC->rbac()->system();
49 $this->
toolbar = $DIC->toolbar();
50 $this->
lng = $DIC->language();
51 $this->tpl = $DIC[
"tpl"];
52 $this->
tabs = $DIC->tabs();
53 $this->
lng->loadLanguageModule(
"style");
56 $this->admin_request = $DIC
62 $this->ref_id = $this->admin_request->getRefId();
67 $next_class = $this->
ctrl->getNextClass($this);
68 $cmd = $this->
ctrl->getCmd(
"listLayouts");
70 if ($cmd ==
"listLayouts") {
76 switch ($next_class) {
77 case 'ilpagelayoutgui':
78 $this->
tabs->clearTargets();
79 $this->
tabs->setBackTarget(
80 $this->
lng->txt(
"page_layouts"),
81 $this->
ctrl->getLinkTarget($this,
"listLayouts")
84 $this->
ctrl->setReturn($this,
"listLayouts");
85 if ($this->pg_id !=
null) {
90 $this->admin_request->getObjId()
94 $layout_gui->setEditPreview(
true);
95 $this->
ctrl->saveParameter($this,
"obj_id");
96 $ret = $this->
ctrl->forwardCommand($layout_gui);
98 $this->tpl->setContent($ret);
103 if (in_array($cmd, array(
"listLayouts",
"editPg",
"addPageLayout",
"cancelCreate",
"createPg",
"exportLayout",
104 "activate",
"deactivate",
"importPageLayoutForm",
"deletePgl",
"cancelDeletePg",
105 "confirmedDeletePg",
"importPageLayout"))) {
108 die(
"Unknown command " . $cmd);
119 bool $a_throw_exc =
true 121 if (!$this->rbacsystem->checkAccess($a_perm, $this->ref_id)) {
135 $this->
lng->txt(
"sty_add_pgl"),
136 $this->
ctrl->getLinkTarget($this,
"addPageLayout")
139 $this->
lng->txt(
"sty_import_page_layout"),
140 $this->
ctrl->getLinkTarget($this,
"importPageLayoutForm")
144 $oa_tpl =
new ilTemplate(
"tpl.stys_pglayout.html",
true,
true,
"components/ILIAS/COPage/Layout");
147 $oa_tpl->setVariable(
"PGLAYOUT_TABLE", $pglayout_table->getHTML());
148 $this->tpl->setContent($oa_tpl->get());
152 bool $a_activate =
true 154 $ids = $this->admin_request->getLayoutIds();
155 if (count($ids) == 0) {
156 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"no_checkbox"),
true);
158 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"sty_opt_saved"),
true);
159 foreach ($ids as $item) {
161 $pg_layout->activate($a_activate);
164 $this->
ctrl->redirect($this,
"listLayouts");
177 $ids = $this->admin_request->getLayoutIds();
178 if (count($ids) == 0) {
179 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
180 $this->
ctrl->redirect($this,
"listLayouts");
187 $cgui->setFormAction($this->
ctrl->getFormAction($this));
188 $cgui->setHeaderText($this->
lng->txt(
"info_delete_sure"));
189 $cgui->setCancel($this->
lng->txt(
"cancel"),
"cancelDeletePg");
190 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmedDeletePg");
192 foreach ($ids as
$id) {
194 $pg_obj->readObject();
196 $caption = $pg_obj->getTitle();
198 $cgui->addItem(
"pglayout[]", $id, $caption);
201 $this->tpl->setContent($cgui->getHTML());
209 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"msg_cancel"),
true);
210 $this->
ctrl->redirect($this,
"listLayouts");
218 $ids = $this->admin_request->getLayoutIds();
219 foreach ($ids as
$id) {
224 $this->
ctrl->redirect($this,
"listLayouts");
232 $this->tpl->setContent($a_form->getHTML());
237 $this->
lng->loadLanguageModule(
"content");
240 $form_gui->setFormAction($this->
ctrl->getFormAction($this));
241 $form_gui->setTitle($this->
lng->txt(
"sty_create_pgl"));
244 $title_input->setSize(50);
245 $title_input->setMaxLength(128);
247 $title_input->setTitle($this->
lng->txt(
"title"));
248 $title_input->setRequired(
true);
253 $desc_input->setCols(37);
261 $mods->addOption($mod);
268 foreach ($arr_templates1 as $v) {
269 $arr_templates[] = $v;
273 $options[
'-1'] = $this->
lng->txt(
"none");
275 foreach ($arr_templates as $templ) {
276 $templ->readObject();
277 $key = $templ->getId();
278 $value = $templ->getTitle();
279 $options[$key] = $value;
282 $ttype_input->setOptions($options);
283 $ttype_input->setValue(-1);
284 $ttype_input->setRequired(
true);
286 $desc_input->setTitle($this->
lng->txt(
"description"));
287 $desc_input->setRequired(
false);
289 $form_gui->addItem($title_input);
290 $form_gui->addItem($desc_input);
291 $form_gui->addItem($mods);
292 $form_gui->addItem($ttype_input);
295 $form_gui->addCommandButton(
"createPg", $this->
lng->txt(
"save"));
296 $form_gui->addCommandButton(
"cancelCreate", $this->
lng->txt(
"cancel"));
305 if (!$form_gui->checkInput()) {
306 $form_gui->setValuesByPost();
313 $pg_object->setTitle($form_gui->getInput(
'pgl_title'));
314 $pg_object->setDescription($form_gui->getInput(
'pgl_desc'));
315 $pg_object->setModules($form_gui->getInput(
'module'));
316 $pg_object->update();
323 $this->pg_content->setId($pg_object->getId());
325 $tmpl = $form_gui->getInput(
'pgl_template');
328 $this->pg_content->setXMLContent($layout_obj->getXMLContent());
330 $this->pg_content->create(
false);
332 $this->
ctrl->setParameterByClass(
"ilpagelayoutgui",
"obj_id", $pg_object->getId());
333 $this->
ctrl->redirectByClass(
"ilpagelayoutgui",
"edit");
345 $this->
ctrl->saveParameterByClass(ilPageLayoutGUI::class,
"obj_id");
346 $this->
ctrl->redirectByClass(ilPageLayoutGUI::class,
"edit");
360 $succ = $exp->exportEntity(
362 $this->admin_request->getObjId(),
364 "components/ILIAS/COPage",
369 if (is_file($succ[
"directory"] .
"/" . $succ[
"file"])) {
371 $succ[
"directory"] .
"/" . $succ[
"file"],
379 if (is_file($succ[
"directory"] .
"/" . $succ[
"file"])) {
380 unlink($succ[
"directory"] .
"/" . $succ[
"file"]);
382 if (is_dir($succ[
"directory"])) {
393 $this->tpl->setContent($form->getHTML());
406 $fi->setRequired(
true);
409 $form->addCommandButton(
"importPageLayout", $this->
lng->txt(
"import"));
410 $form->addCommandButton(
"listLayouts", $this->
lng->txt(
"cancel"));
412 $form->setTitle($this->
lng->txt(
"sty_import_page_layout"));
413 $form->setFormAction($this->
ctrl->getFormAction($this));
424 if ($form->checkInput()) {
426 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"sty_imported_layout"),
true);
427 $this->
ctrl->redirect($this,
"listLayouts");
429 $form->setValuesByPost();
430 $this->tpl->setContent($form->getHTML());
exportLayout()
Export page layout template object.
This class represents an option in a checkbox group.
AdministrationGUIRequest $admin_request
importPageLayout()
Import page layout.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
Class ilPageLayoutGUI GUI class.
setTabs(?ilTabsGUI $a_tabs=null)
output tabs
deletePgl()
display deletion confirmation screen
Base exception class for object service.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilContentStyleSettings $settings
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
activate(bool $a_activate=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static import(string $a_filename, string $a_filepath)
Import page layout.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilPageLayoutPage $pg_content
importPageLayoutForm()
Import page layout.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAvailableModules()
static getLayouts(bool $a_active=false, int $a_module=0)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
addPageLayout(?ilPropertyFormGUI $a_form=null)
cancelDeletePg()
cancel deletion of Page Layout
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This class represents a text area property in a property form.
initPageLayoutImportForm()
Init page layout import form.
checkPermission(string $a_perm, bool $a_throw_exc=true)
Check permission.
confirmedDeletePg()
conform deletion of Page Layout
Administration for page layouts.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...