66 $this->wiki = new \ilObjWiki($wiki_ref_id);
67 $this->selected_pages = (!is_null($selected_pages))
70 static function ($p) {
86 function (
$tpl) use ($resource_injector) {
87 $resource_injector->inject(
$tpl);
95 foreach ($this->selected_pages as $p_id) {
96 $page_gui = new \ilWikiPageGUI($p_id);
97 $page_gui->setWiki($this->wiki);
99 $print_pages[] = $page_gui->showPage();
114 $form = new \ilPropertyFormGUI();
118 $radg = new \ilRadioGroupInputGUI(
$lng->txt(
"cont_selection"),
"sel_type");
119 $radg->setValue(
"page");
120 $op1 = new \ilRadioOption(
$lng->txt(
"cont_current_page"),
"page");
121 $radg->addOption($op1);
122 $op2 = new \ilRadioOption(
$lng->txt(
"wiki_whole_wiki")
123 .
" (" .
$lng->txt(
"wiki_pages") .
": " . count($pages) .
")",
"wiki");
124 $radg->addOption($op2);
125 $op3 = new \ilRadioOption(
$lng->txt(
"wiki_selected_pages"),
"selection");
126 $radg->addOption($op3);
128 $nl = new \ilNestedListInputGUI(
"",
"obj_id");
129 $op3->addSubItem($nl);
131 foreach ($pages as $p) {
139 $lng->txt(
"wiki_page")
143 $form->addItem($radg);
145 $form->addCommandButton(
"printViewOrder",
$lng->txt(
"wiki_show_print_view"));
147 $form->setTitle(
$lng->txt(
"cont_print_selection"));
148 $form->setFormAction(
149 $ilCtrl->getFormActionByClass(
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getOutputMode()
Get output mode.
static getAllWikiPages(int $a_wiki_id)
static _lookupObjId(int $ref_id)
Injects resources into a template.
Collects all js/css/onload resources necessary for page rendering.
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...
getSelectionForm()
form which is featured in the modal form target is modified to open in new window (not yet possible w...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
__construct(\ilLanguage $lng, \ilCtrl $ctrl, int $wiki_ref_id, ?array $selected_pages)
PrintView constructor.