5 require_once(
"libs/composer/vendor/autoload.php");
8 require_once(
"./Services/UICore/lib/html-it/IT.php");
9 require_once(
"./Services/UICore/lib/html-it/ITX.php");
10 require_once(
"./Services/UICore/classes/class.ilTemplate.php");
33 $add_error_mess =
false,
34 $handle_referer =
false,
35 $add_ilias_footer =
false,
36 $add_standard_elements =
false,
40 return $this->
template->get($part);
57 if (
$filename[0] ==
'/' && substr($this->fileRoot, -1) ==
'/') {
63 require_once(
'./Services/GlobalCache/classes/class.ilGlobalCache.php');
81 $content = fread($fh, $fsize);
84 return preg_replace_callback(
85 "#<!-- INCLUDE (.*) -->#im",
87 return $this->getFile($hit[1]);
108 $removeUnknownVariables =
true,
109 $removeEmptyBlocks =
true 115 public function get($part = null)
117 if ($part === null) {
118 $part =
"__global__";
120 if ($part ==
'__global__' && !$this->flagGlobalParsed) {
121 $this->parse(
'__global__');
124 if (!isset($this->blocklist[$part])) {
126 '"' . $block .
"'"));
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,
loadTemplatefile( $filename, $removeUnknownVariables=true, $removeEmptyBlocks=true)
Reads a template file from the disk.
setBodyClass($a_class="")
special template class to simplify handling of ITX/PEAR
Interface to templating as it is used in the UI framework.
loadTemplatefile( $filename, $removeUnknownVariables=true, $removeEmptyBlocks=true)
Reads a template file from the disk.
__construct( $file, $flag1, $flag2, $in_module=false, $vars="DEFAULT", $plugin=false, $a_use_cache=true)
& raiseError($message=null, $code=null, $mode=null, $options=null, $userinfo=null, $error_class=null, $skipmsg=false)
This method is a wrapper that returns an instance of the configured error class with this object's de...
getFile($filename)
Reads a file from disk and returns its content.