48 $this->main_tpl = $DIC->ui()->mainTemplate();
53 $this->
setType(self::TYPE_INFO);
62 public function setType(
int $a_value): void
70 if (in_array($a_value,
$valid)) {
71 $this->type = $a_value;
75 public function setMin(
int $a_value): void
77 $this->min = abs($a_value);
80 public function setMax(
int $a_value): void
82 $this->max = abs($a_value);
87 $this->caption = trim($a_value);
92 $this->show_caption = $a_value;
97 $this->striped = $a_value;
102 $this->animated = $a_value;
107 $this->current = abs($a_value);
112 $this->ajax_url = $a_target;
117 $this->async_timeout = $a_timeout;
120 public function setId(
string $a_id): void
122 $this->unique_id = $a_id;
127 $tpl =
new ilTemplate(
"tpl.il_progress.html",
true,
true,
"Services/UIComponent/ProgressBar");
129 $tpl->setVariable(
"MIN", $this->min);
130 $tpl->setVariable(
"MAX", $this->max);
131 $tpl->setVariable(
"CURRENT_INT", round($this->current));
132 $tpl->setVariable(
"CURRENT", round($this->current));
133 $tpl->setVariable(
"CAPTION", $this->caption);
136 self::TYPE_INFO =>
"info" 137 ,self::TYPE_SUCCESS =>
"success" 138 ,self::TYPE_WARNING =>
"warning" 139 ,self::TYPE_DANGER =>
"danger" 141 $css = array(
"progress-bar-" . $map[$this->type]);
143 if ($this->striped) {
144 $css[] =
"progress-bar-striped";
147 if ($this->animated) {
151 $tpl->setVariable(
"CSS", implode(
" ", $css));
153 if (!$this->show_caption) {
154 $tpl->touchBlock(
"hide_caption_in_bl");
155 $tpl->touchBlock(
"hide_caption_out_bl");
158 if ($this->ajax_url !==
'' && $this->ajax_timeout) {
159 $this->main_tpl->addJavaScript(
"Services/UIComponent/ProgressBar/js/progress_bar.js");
160 $tpl->setCurrentBlock(
'async_status');
161 $tpl->setVariable(
'ASYNC_STATUS_ID', $this->unique_id);
163 $tpl->setVariable(
'AJAX_URL', $this->ajax_url);
164 $tpl->setVariable(
'AJAX_TIMEOUT', 1000 * $this->ajax_timeout);
165 $tpl->parseCurrentBlock();
168 $tpl->setVariable(
'PROGRESS_ID', $this->unique_id);
ilGlobalTemplateInterface $main_tpl
setShowCaption(bool $a_value)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setCurrent(float $a_value)
setAnimated(bool $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setAsynStatusTimeout(int $a_timeout)
setAsyncStatusUrl(string $a_target)
setStriped(bool $a_value)
setCaption(string $a_value)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl