19 declare(strict_types=1);
33 $this->main_tpl = $DIC->ui()->mainTemplate();
34 $this->
lng = $DIC->language();
49 return $this->
lng->txt($txt);
55 $section_header->setTitle($this->
translate(
'output_options'));
56 $form->
addItem($section_header);
74 $external_links->setInfo($this->
translate(
'external_links_info'));
75 return $external_links;
81 $enable_forms->setInfo($this->
translate(
'enable_forms_info'));
88 $low_quality->setInfo($this->
translate(
'low_quality_info'));
95 $grey_scale->setInfo($this->
translate(
'greyscale_info'));
102 $print_media->setInfo($this->
translate(
'print_media_info'));
109 $javascript_delay->setInfo($this->
translate(
'javascript_delay_info'));
110 return $javascript_delay;
137 return $overwrite_font;
143 $section_header->setTitle($this->
translate(
'page_settings'));
144 $form->
addItem($section_header);
178 $margin_left->setInfo($this->
translate(
'margin_info'));
185 $margin_right->setInfo($this->
translate(
'margin_info'));
186 return $margin_right;
192 $margin_top->setInfo($this->
translate(
'margin_info'));
199 $margin_bottom->setInfo($this->
translate(
'margin_info'));
200 return $margin_bottom;
214 return $header_select;
226 $header_text_option->addSubItem($header_text_left);
229 $header_text_option->addSubItem($header_text_center);
232 $header_text_option->addSubItem($header_text_right);
235 $header_text_option->addSubItem($head_text_spacing);
239 $header_text_option->addSubItem($head_text_line);
240 return $header_text_option;
252 $header_html_option->addSubItem($header_html);
255 $header_html_option->addSubItem($head_html_spacing);
258 $header_html_option->addSubItem($head_html_line);
259 return $header_html_option;
273 return $footer_select;
285 $footer_text_option->addSubItem($footer_text_left);
288 $footer_text_option->addSubItem($footer_text_center);
291 $footer_text_option->addSubItem($footer_text_right);
294 $footer_text_option->addSubItem($footer_text_spacing);
298 $footer_text_option->addSubItem($footer_text_line);
299 return $footer_text_option;
311 $footer_html_option->addSubItem($footer_html);
314 $footer_html_option->addSubItem($footer_html_spacing);
317 $footer_html_option->addSubItem($footer_html_line);
318 return $footer_html_option;
323 $everything_ok =
true;
326 $orientation = $this->request->securedString(
'orientation');
327 $margin_left = $this->request->securedString(
'margin_left');
328 $margin_right = $this->request->securedString(
'margin_right');
329 $margin_top = $this->request->securedString(
'margin_top');
330 $margin_bottom = $this->request->securedString(
'margin_bottom');
331 $footer_text_spacing = (
int) $this->request->securedString(
'footer_text_spacing');
332 $footer_html_spacing = (
int) $this->request->securedString(
'footer_html_spacing');
333 $footer_html = $this->request->securedString(
'footer_html');
334 $head_text_spacing = (
int) $this->request->securedString(
'head_text_spacing');
335 $head_html = $this->request->securedString(
'head_html');
336 $head_html_spacing = (
int) $this->request->securedString(
'head_html_spacing');
337 $footer_text_left = $this->request->securedString(
'footer_text_left');
338 $footer_text_center = $this->request->securedString(
'footer_text_center');
339 $footer_text_right = $this->request->securedString(
'footer_text_right');
340 $header_text_left = $this->request->securedString(
'header_text_left');
341 $header_text_center = $this->request->securedString(
'header_text_center');
342 $header_text_right = $this->request->securedString(
'header_text_right');
343 $overwrite_font = strtolower($this->request->securedString(
'overwrite_font'));
350 $footer_text_spacing,
351 $footer_html_spacing,
355 $header_footer_texts = [
365 $page_size = $this->request->securedString(
'page_size');
366 $pre_check_valid = $this->request->validatePathOrUrl([
'checkbox_svg',
367 'checkbox_checked_svg',
369 'radio_button_checked_svg' 371 if($pre_check_valid ===
false) {
372 $everything_ok =
false;
375 if (
$path ===
false) {
376 $everything_ok =
false;
382 $config->setOverwriteDefaultFont($overwrite_font);
384 $everything_ok =
false;
387 if (mb_stripos(
$config->getPath(),
'wkhtmlto') ===
false) {
389 $this->
lng->txt(
"file_not_found")
391 $everything_ok =
false;
393 $everything_ok =
false;
395 $everything_ok =
false;
396 } elseif ($this->request->isNotValidSize($sizes)) {
397 $everything_ok =
false;
398 } elseif ($this->request->isNotValidText($header_footer_texts)) {
399 $everything_ok =
false;
400 } elseif ($everything_ok ===
true && $pre_check_valid) {
401 $config->setZoom($this->request->float(
'zoom'));
402 $config->setExternalLinks($this->request->bool(
'external_links'));
403 $config->setEnabledForms($this->request->bool(
'enable_forms'));
404 $config->setLowQuality($this->request->bool(
'low_quality'));
405 $config->setGreyscale($this->request->bool(
'greyscale'));
406 $config->setOrientation($orientation);
407 $config->setPageSize($page_size);
408 $config->setMarginLeft($margin_left);
409 $config->setMarginRight($margin_right);
410 $config->setMarginTop($margin_top);
411 $config->setMarginBottom($margin_bottom);
412 $config->setPrintMediaType($this->request->bool(
'print_media_type'));
413 $config->setJavascriptDelay($this->request->int(
'javascript_delay'));
414 $config->setCheckboxSvg($this->request->securedString(
'checkbox_svg'));
415 $config->setCheckboxCheckedSvg($this->request->securedString(
'checkbox_checked_svg'));
416 $config->setRadioButtonSvg($this->request->securedString(
'radio_button_svg'));
417 $config->setRadioButtonCheckedSvg($this->request->securedString(
'radio_button_checked_svg'));
418 $config->setHeaderType($this->request->int(
'header_select'));
419 $config->setHeaderTextLeft($this->request->securedString(
'head_text_left'));
420 $config->setHeaderTextCenter($this->request->securedString(
'head_text_center'));
421 $config->setHeaderTextRight($this->request->securedString(
'head_text_right'));
422 $config->setHeaderTextSpacing($head_text_spacing);
423 $config->setHeaderTextLine($this->request->bool(
'head_text_line'));
424 $config->setHeaderHtmlLine($this->request->bool(
'head_html_line'));
425 $config->setHeaderHtmlSpacing($head_html_spacing);
426 $config->setHeaderHtml($head_html);
427 $config->setFooterType($this->request->int(
'footer_select'));
428 $config->setFooterTextLeft($footer_text_left);
429 $config->setFooterTextCenter($footer_text_center);
430 $config->setFooterTextRight($footer_text_right);
431 $config->setFooterTextSpacing($footer_text_spacing);
432 $config->setFooterTextLine($this->request->bool(
'footer_text_line'));
433 $config->setFooterHtmlLine($this->request->bool(
'footer_html_line'));
434 $config->setFooterHtmlSpacing($footer_html_spacing);
435 $config->setFooterHtml($footer_html);
436 $config->setOverwriteDefaultFont($this->request->securedString(
'overwrite_font'));
440 return $everything_ok;
458 'external_links' => (bool) $form->
getInput(
'external_links'),
459 'enable_forms' => (bool) $form->
getInput(
'enable_forms'),
460 'low_quality' => (bool) $form->
getInput(
'low_quality'),
461 'greyscale' => (bool) $form->
getInput(
'greyscale'),
462 'orientation' => $form->
getInput(
'orientation'),
463 'page_size' => $form->
getInput(
'page_size'),
464 'margin_left' => $form->
getInput(
'margin_left'),
465 'margin_right' => $form->
getInput(
'margin_right'),
466 'margin_top' => $form->
getInput(
'margin_top'),
467 'margin_bottom' => $form->
getInput(
'margin_bottom'),
468 'print_media_type' => (bool) $form->
getInput(
'print_media_type'),
469 'javascript_delay' => $form->
getInput(
'javascript_delay'),
470 'checkbox_svg' => $form->
getInput(
'checkbox_svg'),
471 'checkbox_checked_svg' => $form->
getInput(
'checkbox_checked_svg'),
472 'radio_button_svg' => $form->
getInput(
'radio_button_svg'),
473 'radio_button_checked_svg' => $form->
getInput(
'radio_button_checked_svg'),
474 'header_select' => $form->
getInput(
'header_select'),
475 'head_text_left' => $form->
getInput(
'head_text_left'),
476 'head_text_center' => $form->
getInput(
'head_text_center'),
477 'head_text_right' => $form->
getInput(
'head_text_right'),
478 'head_text_spacing' => $form->
getInput(
'head_text_spacing'),
479 'head_text_line' => $form->
getInput(
'head_text_line'),
480 'head_html_line' => $form->
getInput(
'head_html_line'),
481 'head_html_spacing' => $form->
getInput(
'head_html_spacing'),
482 'head_html' => $form->
getInput(
'head_html'),
483 'footer_select' => $form->
getInput(
'footer_select'),
484 'footer_text_left' => $form->
getInput(
'footer_text_left'),
485 'footer_text_right' => $form->
getInput(
'footer_text_right'),
486 'footer_text_spacing' => $form->
getInput(
'footer_text_spacing'),
487 'footer_text_center' => $form->
getInput(
'footer_text_center'),
488 'footer_text_line' => $form->
getInput(
'footer_text_line'),
489 'footer_html' => $form->
getInput(
'footer_html'),
490 'footer_html_spacing' => $form->
getInput(
'footer_html_spacing'),
491 'overwrite_font' => $form->
getInput(
'overwrite_font')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getPageSizesNames()
getOverwriteDefaultFont(bool $renderStyle=false)
getRadioButtonCheckedSvg()
static escapeShellCmd(string $a_arg)
getWKHTMLToPdfDefaultPath()