40 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /> 43 <body>$contentHtml</body> 52 private static function makeHtmlDocument($contentHtml, $styleHtml)
54 if (!is_string($contentHtml) || !strlen(trim($contentHtml))) {
58 $html = self::buildHtmlDocument($contentHtml, $styleHtml);
60 $dom =
new DOMDocument(
"1.0",
"utf-8");
61 if (!@$dom->loadHTML($html)) {
65 $invalid_elements = array();
67 $script_elements = $dom->getElementsByTagName(
'script');
68 foreach ($script_elements as $elm) {
69 $invalid_elements[] = $elm;
72 foreach ($invalid_elements as $elm) {
73 $elm->parentNode->removeChild($elm);
77 $domX =
new DomXPath($dom);
78 foreach ($domX->query(
"//*[contains(@class, 'noprint')]") as $node) {
79 $node->parentNode->removeChild($node);
82 $dom->encoding =
'UTF-8';
84 $img_src_map = array();
85 foreach ($dom->getElementsByTagName(
'img') as $elm) {
87 $uid =
'img_src_' . uniqid();
88 $src = $elm->getAttribute(
'src');
90 $elm->setAttribute(
'src', $uid);
92 $img_src_map[$uid] = $src;
95 $cleaned_html = $dom->saveHTML();
97 foreach ($img_src_map as $uid => $src) {
98 $cleaned_html = str_replace($uid, $src, $cleaned_html);
101 if (!$cleaned_html) {
105 return $cleaned_html;
110 $pdf_output = self::preprocessHTML($pdf_output);
117 if (!$pdf_factory->deliverPDFFromHTMLString(
124 throw new \Exception(
'could not write PDF');
131 $html = self::makeHtmlDocument($html,
'<style>' . self::getCssContent() .
'</style>');
136 protected static function getTemplatePath($a_filename, $module_path =
'Modules/Test/')
139 include_once
"Services/Style/System/classes/class.ilStyleDefinition.php";
141 $fname =
"./Customizing/global/skin/" .
145 if ($fname ==
"" || !file_exists($fname)) {
146 $fname =
"./" . $module_path .
"templates/default/" . basename($a_filename);
153 $cssContent = file_get_contents(self::getTemplatePath(
'delos.css',
''));
154 $cssContent .= file_get_contents(self::getTemplatePath(
'test_pdf.css'));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static buildHtmlDocument($contentHtml, $styleHtml)
static preprocessHTML($html)
static getCurrentSkin()
get the current skin
static generatePDF($pdf_output, $output_mode, $filename=null, $purpose=null)
const PDF_OUTPUT_DOWNLOAD
static getTemplatePath($a_filename, $module_path='Modules/Test/')