33 $form->addItem($path);
45 return $this->lng->txt(
$txt);
54 $section_header->setTitle($this->
translate(
'output_options'));
55 $form->
addItem($section_header);
76 $external_links->setInfo($this->
translate(
'external_links_info'));
77 return $external_links;
86 $enable_forms->setInfo($this->
translate(
'enable_forms_info'));
96 $low_quality->setInfo($this->
translate(
'low_quality_info'));
106 $grey_scale->setInfo($this->
translate(
'greyscale_info'));
116 $print_media->setInfo($this->
translate(
'print_media_info'));
126 $javascript_delay->setMinValue(0);
127 $javascript_delay->setInfo($this->
translate(
'javascript_delay_info'));
128 return $javascript_delay;
138 return $overwrite_font;
147 $section_header->setTitle($this->
translate(
'page_settings'));
148 $form->
addItem($section_header);
195 $margin_left->setValidationRegexp(
'/(\d)+?(\W)*(cm|mm)$/');
196 $margin_left->setInfo($this->
translate(
'margin_info'));
206 $margin_right->setValidationRegexp(
'/(\d)+?(\W)*(cm|mm)$/');
207 $margin_right->setInfo($this->
translate(
'margin_info'));
208 return $margin_right;
217 $margin_top->setValidationRegexp(
'/(\d)+?(\W)*(cm|mm)$/');
218 $margin_top->setInfo($this->
translate(
'margin_info'));
228 $margin_bottom->setValidationRegexp(
'/(\d)+?(\W)*(cm|mm)$/');
229 $margin_bottom->setInfo($this->
translate(
'margin_info'));
230 return $margin_bottom;
243 return $header_select;
254 $header_text_option->addSubItem($header_text_left);
257 $header_text_option->addSubItem($header_text_center);
260 $header_text_option->addSubItem($header_text_right);
263 $header_text_option->addSubItem($head_text_spacing);
267 $header_text_option->addSubItem($head_text_line);
268 return $header_text_option;
279 $header_html_option->addSubItem($header_html);
282 $header_html_option->addSubItem($head_html_spacing);
285 $header_html_option->addSubItem($head_html_line);
286 return $header_html_option;
299 return $footer_select;
310 $footer_text_option->addSubItem($footer_text_left);
313 $footer_text_option->addSubItem($footer_text_center);
316 $footer_text_option->addSubItem($footer_text_right);
319 $footer_text_option->addSubItem($footer_text_spacing);
323 $footer_text_option->addSubItem($footer_text_line);
324 return $footer_text_option;
335 $footer_html_option->addSubItem($footer_html);
338 $footer_html_option->addSubItem($footer_html_spacing);
341 $footer_html_option->addSubItem($footer_html_line);
342 return $footer_html_option;
370 $everything_ok =
true;
379 $footer_text_spacing = (int)
$_POST[
'footer_text_spacing'];
380 $footer_html_spacing = (int)
$_POST[
'footer_html_spacing'];
381 $head_text_spacing = (int)
$_POST[
'head_text_spacing'];
382 $head_html_spacing = (int)
$_POST[
'head_html_spacing'];
390 $margin_left, $margin_right, $margin_top, $margin_bottom, $footer_text_spacing, $footer_html_spacing, $head_text_spacing, $head_html_spacing
392 $header_footer_texts = [
393 $footer_text_left, $footer_text_center, $footer_text_right, $header_text_left, $header_text_center, $header_text_right
395 if (mb_stripos(
$config->getPath(),
'wkhtmlto') ===
false) {
397 $everything_ok =
false;
400 $everything_ok =
false;
403 $everything_ok =
false;
406 $everything_ok =
false;
410 $config->setExternalLinks((
int) $_POST[
'external_links']);
411 $config->setEnabledForms((
int) $_POST[
'enable_forms']);
412 $config->setLowQuality((
int) $_POST[
'low_quality']);
413 $config->setGreyscale((
int) $_POST[
'greyscale']);
414 $config->setOrientation($orientation);
420 $config->setPrintMediaType((
int) $_POST[
'print_media_type']);
421 $config->setJavascriptDelay((
int) $_POST[
'javascript_delay']);
426 $config->setHeaderType((
int) $_POST[
'header_select']);
430 $config->setHeaderTextSpacing((
int) $head_text_spacing);
431 $config->setHeaderTextLine((
int) $_POST[
'head_text_line']);
432 $config->setHeaderHtmlLine((
int) $_POST[
'head_html_line']);
433 $config->setHeaderHtmlSpacing((
int) $head_html_spacing);
435 $config->setFooterType((
int) $_POST[
'footer_select']);
436 $config->setFooterTextLeft($footer_text_left);
437 $config->setFooterTextCenter($footer_text_center);
438 $config->setFooterTextRight($footer_text_right);
439 $config->setFooterTextSpacing($footer_text_spacing);
440 $config->setFooterTextLine((
int) $_POST[
'footer_text_line']);
441 $config->setFooterHtmlLine((
int) $_POST[
'footer_html_line']);
442 $config->setFooterHtmlSpacing((
int) $footer_html_spacing);
448 return $everything_ok;
452 foreach($sizes as
$size) {
453 if(! preg_match(
'/(\d)+?(\W)*(cm|mm)$/', $size)){
454 if($size !== 0 && $size !== null && $size !==
"") {
464 foreach($texts as $text) {
465 if(! preg_match(
'/[a-zA-Z\d ]+$/', $text)){
466 if($text !==
'' && $text !== null && $text !==
"") {
478 $settings =
new ilSetting(
'wkhtmltopdfrenderer');
479 $settings->set(
'path', $path);
490 $orientation =
'Portrait';
496 'external_links' => (int) $form->
getItemByPostVar(
'external_links')->getChecked(),
497 'enable_forms' => (int) $form->
getItemByPostVar(
'enable_forms')->getChecked(),
498 'low_quality' => (int) $form->
getItemByPostVar(
'low_quality')->getChecked(),
500 'orientation' => $orientation,
506 'print_media_type' => (
int) $form->
getItemByPostVar(
'print_media_type')->getChecked(),
507 'javascript_delay' => (int) $form->
getItemByPostVar(
'javascript_delay')->getValue(),
512 'header_select' => (int) $form->
getItemByPostVar(
'header_select')->getValue(),
518 'head_html_line' => (
int) $form->
getItemByPostVar(
'head_html_line')->getValue(),
519 'head_html_spacing' => (int) $form->
getItemByPostVar(
'head_html_spacing')->getValue(),
526 'footer_text_line' => (int) $form->
getItemByPostVar(
'footer_text_line')->getValue(),
528 'footer_html_spacing' => (int) $form->
getItemByPostVar(
'footer_html_spacing')->getValue(),
539 $form->getItemByPostVar(
'path')->setValue(
$config->getWKHTMLToPdfDefaultPath());
540 $form->getItemByPostVar(
'zoom')->setValue(
$config->getZoom());
541 $form->getItemByPostVar(
'external_links')->setValue(1);
542 $form->getItemByPostVar(
'external_links')->setChecked(
$config->getExternalLinks());
543 $form->getItemByPostVar(
'enable_forms')->setValue(1);
544 $form->getItemByPostVar(
'enable_forms')->setChecked(
$config->getEnabledForms());
545 $form->getItemByPostVar(
'low_quality')->setValue(1);
546 $form->getItemByPostVar(
'low_quality')->setChecked(
$config->getLowQuality());
547 $form->getItemByPostVar(
'greyscale')->setValue(1);
548 $form->getItemByPostVar(
'greyscale')->setChecked(
$config->getGreyscale());
549 $form->getItemByPostVar(
'orientation')->setValue(
$config->getOrientation());
550 $form->getItemByPostVar(
'page_size')->setValue(
$config->getPageSize());
551 $form->getItemByPostVar(
'margin_left')->setValue(
$config->getMarginLeft());
552 $form->getItemByPostVar(
'margin_right')->setValue(
$config->getMarginRight());
553 $form->getItemByPostVar(
'margin_top')->setValue(
$config->getMarginTop());
554 $form->getItemByPostVar(
'margin_bottom')->setValue(
$config->getMarginBottom());
555 $form->getItemByPostVar(
'print_media_type')->setValue(1);
556 $form->getItemByPostVar(
'print_media_type')->setChecked(
$config->getPrintMediaType());
557 $form->getItemByPostVar(
'javascript_delay')->setValue(
$config->getJavascriptDelay());
558 $form->getItemByPostVar(
'checkbox_svg')->setValue(
$config->getCheckboxSvg());
559 $form->getItemByPostVar(
'checkbox_checked_svg')->setValue(
$config->getCheckboxCheckedSvg());
560 $form->getItemByPostVar(
'radio_button_svg')->setValue(
$config->getRadioButtonSvg());
561 $form->getItemByPostVar(
'radio_button_checked_svg')->setValue(
$config->getRadioButtonCheckedSvg());
562 $form->getItemByPostVar(
'header_select')->setValue(
$config->getHeaderType());
563 $form->getItemByPostVar(
'head_text_left')->setValue(
$config->getHeaderTextLeft());
564 $form->getItemByPostVar(
'head_text_center')->setValue(
$config->getHeaderTextCenter());
565 $form->getItemByPostVar(
'head_text_right')->setValue(
$config->getHeaderTextRight());
566 $form->getItemByPostVar(
'head_text_spacing')->setValue(
$config->getHeaderTextSpacing());
567 $form->getItemByPostVar(
'head_text_line')->setValue(1);
568 $form->getItemByPostVar(
'head_text_line')->setChecked(
$config->isHeaderTextLine());
569 $form->getItemByPostVar(
'head_html_line')->setValue(1);
570 $form->getItemByPostVar(
'head_html_line')->setChecked(
$config->isHeaderHtmlLine());
571 $form->getItemByPostVar(
'head_html_spacing')->setValue(
$config->getHeaderHtmlSpacing());
572 $form->getItemByPostVar(
'head_html')->setValue(
$config->getHeaderHtml());
573 $form->getItemByPostVar(
'footer_select')->setValue(
$config->getFooterType());
574 $form->getItemByPostVar(
'footer_text_left')->setValue(
$config->getFooterTextLeft());
575 $form->getItemByPostVar(
'footer_text_center')->setValue(
$config->getFooterTextCenter());
576 $form->getItemByPostVar(
'footer_text_right')->setValue(
$config->getFooterTextRight());
577 $form->getItemByPostVar(
'footer_text_spacing')->setValue(
$config->getFooterTextSpacing());
578 $form->getItemByPostVar(
'footer_text_line')->setValue(1);
579 $form->getItemByPostVar(
'footer_text_line')->setChecked(
$config->isFooterTextLine());
580 $form->getItemByPostVar(
'footer_html_line')->setValue(1);
581 $form->getItemByPostVar(
'footer_html_line')->setChecked(
$config->isFooterHtmlLine());
582 $form->getItemByPostVar(
'footer_html')->setValue(
$config->getFooterHtml());
583 $form->getItemByPostVar(
'footer_html_spacing')->setValue(
$config->getFooterHtmlSpacing());
584 $form->getItemByPostVar(
'overwrite_font')->setValue(
$config->getOverwriteDefaultFont(
false));
Concrete class for sanitizing html of forum posts.
This class represents an option in a radio group.
static getPageSizesNames()
static escapeShellCmd($a_arg)
escape shell cmd
static setCheckedIfTrue(\ilPropertyFormGUI $form)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.