3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
24 require_once(
"./Services/UICore/lib/html-it/IT.php");
25 require_once(
"./Services/UICore/lib/html-it/ITX.php");
26 require_once(
"./Services/UICore/classes/class.ilTemplate.php");
35 $vars = self::DEFAULT_BLOCK,
46 bool $add_error_mess =
false,
47 bool $handle_referer =
false,
48 bool $add_ilias_footer =
false,
49 bool $add_standard_elements =
false,
50 bool $a_main_menu =
true,
53 return $this->
template->get($part);
66 if ($filename[0] ===
'/' && substr($this->fileRoot, -1) ===
'/') {
67 $filename = substr($filename, 1);
72 require_once(
'./Services/GlobalCache/classes/class.ilGlobalCache.php');
75 if (!($fh = @fopen($filename,
'rb'))) {
76 $this->err[] = (
new PEAR())->raiseError(
77 $this->errorMessage(self::IT_TPL_NOT_FOUND) .
78 ': "' . $filename .
'"',
79 self::IT_TPL_NOT_FOUND
84 $fsize = filesize($filename);
90 $content = fread($fh, $fsize);
93 return preg_replace_callback(
94 "#<!-- INCLUDE (.*) -->#im",
96 return $this->getFile($hit[1]);
108 bool $removeUnknownVariables =
true,
109 bool $removeEmptyBlocks =
true 115 public function get(
string $part = null):
string 117 if ($part === null) {
118 $part = self::IT_DEFAULT_BLOCK;
120 if ($part === self::IT_DEFAULT_BLOCK && !$this->flagGlobalParsed) {
121 $this->parse(self::IT_DEFAULT_BLOCK);
124 if (!isset($this->blocklist[$part])) {
129 if (isset($this->blockdata[$part])) {
130 $ret = $this->blockdata[$part];
131 if ($this->clearCache) {
132 unset($this->blockdata[$part]);
134 if ($this->_options[
'preserve_data']) {
136 $this->openingDelimiter .
137 '%preserved%' . $this->closingDelimiter,
138 $this->openingDelimiter,
special template class to simplify handling of ITX/PEAR
__construct( $file, $flag1, $flag2, $in_module='', $vars=self::DEFAULT_BLOCK, $plugin=false, $a_use_cache=true)
loadTemplatefile(string $filename, bool $removeUnknownVariables=true, bool $removeEmptyBlocks=true)
Reads a template file from the disk.
Interface to templating as it is used in the UI framework.
getFile(string $filename)
Reads a file from disk and returns its content.
setBodyClass(string $a_class="")
Sets the body-tags class.
loadTemplatefile(string $filename, bool $removeUnknownVariables=true, bool $removeEmptyBlocks=true)
Reads a template file from the disk.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...