41 $ilCtrl = $DIC->ctrl();
43 $ilToolbar = $DIC->toolbar();
44 $lng = $DIC->language();
46 $this->wiki_gui = $a_wiki_gui;
48 $wiki = $this->wiki_gui->getObject();
50 $this->
ctrl = $ilCtrl;
65 $nc = $this->
ctrl->getNextClass();
69 $cmd = $this->
ctrl->getCmd(
"listTemplates");
70 if (in_array($cmd, array(
"listTemplates",
"add",
"remove",
"saveTemplateSettings",
"addPageTemplateFromPageAction",
"removePageTemplateFromPageAction"))) {
81 $options = array(
"" => $this->
lng->txt(
"please_select"));
82 foreach ($pages as $p) {
89 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this));
90 $this->
toolbar->setOpenFormTag(
true);
91 $this->
toolbar->setCloseFormTag(
false);
93 if (count($options) > 0) {
95 $si->setOptions($options);
96 $this->
toolbar->addInputItem($si);
97 $this->
toolbar->addFormButton($this->
lng->txt(
"wiki_add_template"),
"add");
103 $cb->
setChecked($this->wiki->getEmptyPageTemplate());
104 $this->
toolbar->addInputItem($cb,
true);
105 $this->
toolbar->addFormButton($this->
lng->txt(
"save"),
"saveTemplateSettings");
109 $tab->setCloseFormTag(
true);
110 $this->tpl->setContent($tab->getHTML());
113 public function add(): void
116 $wpt->
save($this->request->getPageTemplateId());
117 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"wiki_template_added"),
true);
118 $this->
ctrl->redirect($this,
"listTemplates");
121 public function remove():
void 125 $ids = $this->request->getIds();
126 if (count($ids) > 0) {
127 foreach ($ids as
$id) {
130 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"wiki_template_status_removed"),
true);
133 $this->
ctrl->redirect($this,
"listTemplates");
138 $all_ids = $this->request->getAllIds();
139 $new_pages = $this->request->getNewPages();
140 $add_to_page = $this->request->getAddToPage();
141 foreach ($all_ids as
$id) {
143 $wpt->
save($id, $new_pages[$id] ?? 0, $add_to_page[$id] ?? 0);
146 $this->wiki->setEmptyPageTemplate($this->request->getEmptyPageTemplate());
147 $this->wiki->update();
149 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
150 $this->
ctrl->redirect($this,
"listTemplates");
160 $page_id = $this->request->getWikiPageId();
164 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"wiki_template_status_removed"),
true);
167 $this->
ctrl->redirect($this,
"listTemplates");
172 $page_id = $this->request->getWikiPageId();
175 $wpt->
save($page_id);
176 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"wiki_template_added"),
true);
179 $this->
ctrl->redirect($this,
"listTemplates");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Wiki page template gui class.
removePageTemplateFromPageAction()
static getAllWikiPages(int $a_wiki_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
EditingGUIRequest $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
save(int $a_id, int $a_new_pages=0, int $a_add_to_page=0)
Add wiki page template.
__construct(Container $dic, ilPlugin $plugin)
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
remove(int $a_id)
Remove template status of a page.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
setOpenFormTag(bool $a_val)
ilGlobalTemplateInterface $tpl
addPageTemplateFromPageAction()