58 $this->ctrl = $DIC->ctrl();
59 $this->rbacsystem = $DIC->rbac()->system();
60 $this->toolbar = $DIC->toolbar();
61 $this->lng = $DIC->language();
62 $this->tpl = $DIC[
"tpl"];
63 $this->ref_id = (int)
$_GET[
"ref_id"];
64 $this->tabs = $DIC[
"ilTabs"];
67 include_once(
"./Services/Style/Content/classes/class.ilContentStyleSettings.php");
76 $next_class = $this->ctrl->getNextClass($this);
77 $cmd = $this->ctrl->getCmd(
"listLayouts");
79 if ($cmd ==
"listLayouts") {
85 switch ($next_class) {
86 case 'ilpagelayoutgui':
87 $this->tabs->clearTargets();
88 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayoutGUI.php");
91 $this->tabs->setBackTarget(
92 $this->lng->txt(
"page_layouts"),
93 $this->ctrl->getLinkTarget($this,
"listLayouts")
96 $this->ctrl->setReturn($this,
"listLayouts");
97 if ($this->pg_id != null) {
102 $layout_gui->setTabs();
103 $layout_gui->setEditPreview(
true);
104 $this->ctrl->saveParameter($this,
"obj_id");
105 $ret = $this->ctrl->forwardCommand($layout_gui);
107 $this->tpl->setContent(
$ret);
112 if (in_array($cmd, array(
"listLayouts",
"editPg",
"addPageLayout",
"cancelCreate",
"createPg",
"exportLayout",
113 "savePageLayoutTypes",
"activate",
"deactivate",
"importPageLayoutForm",
"deletePgl",
"cancelDeletePg",
114 "confirmedDeletePg",
"importPageLayout"))) {
117 die(
"Unknown command " . $cmd);
131 if (!$this->rbacsystem->checkAccess($a_perm, $this->ref_id)) {
133 include_once
"Services/Object/exceptions/class.ilObjectException.php";
148 $this->toolbar->addButton(
149 $this->lng->txt(
"sty_add_pgl"),
150 $this->ctrl->getLinkTarget($this,
"addPageLayout")
152 $this->toolbar->addButton(
153 $this->lng->txt(
"sty_import_page_layout"),
154 $this->ctrl->getLinkTarget($this,
"importPageLayoutForm")
158 $oa_tpl =
new ilTemplate(
"tpl.stys_pglayout.html",
true,
true,
"Services/COPage/Layout");
160 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayoutTableGUI.php");
162 $oa_tpl->setVariable(
"PGLAYOUT_TABLE", $pglayout_table->getHTML());
163 $this->tpl->setContent($oa_tpl->get());
173 if (!isset(
$_POST[
"pglayout"])) {
176 ilUtil::sendSuccess($this->lng->txt(
"sty_opt_saved"),
true);
177 foreach (
$_POST[
"pglayout"] as $item) {
179 $pg_layout->activate($a_activate);
182 $this->ctrl->redirect($this,
"listLayouts");
198 if (!isset(
$_POST[
"pglayout"])) {
200 $this->ctrl->redirect($this,
"listLayouts");
206 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
208 $cgui->setFormAction($this->ctrl->getFormAction($this));
209 $cgui->setHeaderText($this->lng->txt(
"info_delete_sure"));
210 $cgui->setCancel($this->lng->txt(
"cancel"),
"cancelDeletePg");
211 $cgui->setConfirm($this->lng->txt(
"confirm"),
"confirmedDeletePg");
213 foreach (
$_POST[
"pglayout"] as $id) {
215 $pg_obj->readObject();
218 " " . $pg_obj->getTitle();
220 $cgui->addItem(
"pglayout[]", $id, $caption);
223 $this->tpl->setContent($cgui->getHTML());
232 $this->ctrl->redirect($this,
"listLayouts");
240 foreach (
$_POST[
"pglayout"] as $id) {
245 $this->ctrl->redirect($this,
"listLayouts");
257 $this->tpl->setContent($a_form->getHTML());
265 $this->lng->loadLanguageModule(
"content");
267 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
269 $form_gui->setFormAction($this->ctrl->getFormAction($this));
270 $form_gui->setTitle($this->lng->txt(
"sty_create_pgl"));
272 $title_input =
new ilTextInputGUI($this->lng->txt(
"title"),
"pgl_title");
273 $title_input->setSize(50);
274 $title_input->setMaxLength(128);
275 $title_input->setValue($this->layout_object->title);
276 $title_input->setTitle($this->lng->txt(
"title"));
277 $title_input->setRequired(
true);
280 $desc_input->
setValue($this->layout_object->description);
281 $desc_input->setRows(3);
282 $desc_input->setCols(37);
286 "0" => $this->lng->txt(
"cont_layout_template"),
287 "1" => $this->lng->txt(
"cont_special_page"),
290 $si->setOptions($options);
297 $mods->addOption($mod);
300 $ttype_input =
new ilSelectInputGUI($this->lng->txt(
"sty_based_on"),
"pgl_template");
304 foreach ($arr_templates1 as $v) {
305 $arr_templates[] = $v;
309 $options[
'-1'] = $this->lng->txt(
"none");
311 foreach ($arr_templates as $templ) {
312 $templ->readObject();
313 $key = $templ->getId();
314 $value = $templ->getTitle();
315 $options[$key] = $value;
318 $ttype_input->setOptions($options);
319 $ttype_input->setValue(-1);
320 $ttype_input->setRequired(
true);
322 $desc_input->setTitle($this->lng->txt(
"description"));
323 $desc_input->setRequired(
false);
325 $form_gui->addItem($title_input);
326 $form_gui->addItem($desc_input);
327 $form_gui->addItem($si);
328 $form_gui->addItem($mods);
329 $form_gui->addItem($ttype_input);
332 $form_gui->addCommandButton(
"createPg", $this->lng->txt(
"save"));
333 $form_gui->addCommandButton(
"cancelCreate", $this->lng->txt(
"cancel"));
342 if (!$form_gui->checkInput()) {
343 $form_gui->setValuesByPost();
350 $pg_object->setTitle($form_gui->getInput(
'pgl_title'));
351 $pg_object->setDescription($form_gui->getInput(
'pgl_desc'));
352 $pg_object->setSpecialPage($form_gui->getInput(
'special_page'));
353 $pg_object->setModules($form_gui->getInput(
'module'));
354 $pg_object->update();
356 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayoutPage.php");
359 if (!is_object($pg_content)) {
363 $this->pg_content->setId($pg_object->getId());
365 $tmpl = $form_gui->getInput(
'pgl_template');
368 $this->pg_content->setXMLContent($layout_obj->getXMLContent());
369 $this->pg_content->create(
false);
371 $this->pg_content->create(
false);
374 $this->ctrl->setParameterByClass(
"ilpagelayoutgui",
"obj_id", $pg_object->getId());
375 $this->ctrl->redirectByClass(
"ilpagelayoutgui",
"edit");
393 $this->ctrl->setCmdClass(
"ilpagelayoutgui");
394 $this->ctrl->setCmd(
"edit");
406 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayout.php");
408 if (is_array(
$_POST[
"type"])) {
409 foreach (
$_POST[
"type"] as $id => $t) {
413 $l->setSpecialPage($t);
414 if (is_array(
$_POST[
"module"][$id])) {
415 $l->setModules(array_keys(
$_POST[
"module"][$id]));
423 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"));
426 $this->ctrl->redirect($this,
"listLayouts");
435 include_once(
"./Services/Export/classes/class.ilExport.php");
441 $succ = $exp->exportEntity(
443 (
int)
$_GET[
"layout_id"],
450 if ($succ[
"success"]) {
452 $succ[
"directory"] .
"/" . $succ[
"file"],
460 if (is_file($succ[
"directory"] .
"/" . $succ[
"file"])) {
461 unlink($succ[
"directory"] .
"/" . $succ[
"file"]);
463 if (is_dir($succ[
"directory"])) {
464 unlink($succ[
"directory"]);
474 $this->tpl->setContent($form->getHTML());
482 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
488 $fi->setRequired(
true);
491 $form->addCommandButton(
"importPageLayout", $this->lng->txt(
"import"));
492 $form->addCommandButton(
"listLayouts", $this->lng->txt(
"cancel"));
494 $form->setTitle($this->lng->txt(
"sty_import_page_layout"));
495 $form->setFormAction($this->ctrl->getFormAction($this));
506 if ($form->checkInput()) {
507 include_once(
"./Services/COPage/Layout/classes/class.ilPageLayout.php");
510 ilUtil::sendSuccess($this->lng->txt(
"sty_imported_layout"),
true);
512 $this->ctrl->redirect($this,
"listLayouts");
514 $form->setValuesByPost();
515 $this->tpl->setContent($form->getHtml());
exportLayout()
Export page layout template object.
This class represents an option in a checkbox group.
importPageLayout()
Import page layout.
__construct()
Constructor.
Class ilPageLayoutGUI GUI class.
static getImageTagByType($a_type, $a_path, $a_big=false)
Builds an html image tag TODO: function still in use, but in future use getImagePath and move HTML-Co...
savePageLayoutTypes()
Save page layout types.
deletePgl()
display deletion confirmation screen
Base exception class for object service.
setValue($a_value)
Set Value.
executeCommand()
Execute command.
activate($a_activate=true)
Activate layout.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
addPageLayout($a_form=null)
importPageLayoutForm()
Import page layout.
static import($a_filename, $a_filepath)
Import page layout.
TableGUI class for page layouts.
static getLayouts($a_active=false, $a_special_page=false, $a_module=null)
Get layouts.
cancelCreate()
Cancel creation.
static getAvailableModules()
deactivate()
Deactivate layout.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
listLayouts()
view list of page layouts
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
cancelDeletePg()
cancel deletion of Page Layout
This class represents a text area property in a property form.
checkPermission($a_perm, $a_throw_exc=true)
Check permission.
initPageLayoutImportForm()
Init page layout import form.
confirmedDeletePg()
conform deletion of Page Layout
Administration for page layouts.
static deliverFile( $a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
Confirmation screen class.