26 protected \ILIAS\DI\UIServices
$ui;
33 string $a_postvar =
"" 37 $this->
lng = $DIC->language();
38 $this->tpl = $DIC[
"tpl"];
40 $this->
ui = $DIC->ui();
45 $this->value = $a_value;
55 $this->validationFailureMessage = $a_msg;
79 foreach (
$data as $slot => $days) {
85 $parts = explode(
"-", $slot);
86 $from = str_replace(
":",
"",
$parts[0]);
87 $to = str_replace(
":",
"",
$parts[1]);
93 foreach (
$data as $rslot => $rdays) {
94 if ($slot != $rslot && $rdays && array_intersect($days, $rdays)) {
95 $rparts = explode(
"-", $rslot);
96 $rfrom = str_replace(
":",
"", $rparts[0]);
97 $rto = str_replace(
":",
"", $rparts[1]);
99 if (($rfrom > $from && $rfrom < $to) ||
100 ($rto > $from && $rto < $to) ||
101 ($rfrom < $from && $rto > $to)) {
127 $a_remove_invalid =
true 130 for ($loop = 0; $loop < 240; $loop++) {
131 $days = $this->
strArray($a_post_var .
"_days~" . $loop);
132 $from = self::parseTime(
133 $this->
str($a_post_var .
"_from_hh~" . $loop),
134 $this->
str($a_post_var .
"_from_mm~" . $loop)
136 $to = self::parseTime(
137 $this->
str($a_post_var .
"_to_hh~" . $loop),
138 $this->
str($a_post_var .
"_to_mm~" . $loop)
142 if ($days || $from !==
"00:00" || $to !==
"00:00") {
143 $slot = $from .
"-" . $to;
145 if (isset(
$res[$slot])) {
146 $res[$slot] = array_unique(array_merge(
$res[$slot], $days));
151 $res[$slot] = array();
154 if ($a_remove_invalid && !($days && $from && $to && $from !== $to)) {
167 $tpl =
new ilTemplate(
"tpl.schedule_input.html",
true,
true,
"components/ILIAS/BookingManager");
176 $days = array(
"Mo",
"Tu",
"We",
"Th",
"Fr",
"Sa",
"Su");
178 foreach ($def as $slot => $days_select) {
180 foreach ($days as $day) {
181 $day_value = strtolower($day);
189 if ($days_select && in_array($day_value, $days_select,
true)) {
190 $tpl->
setVariable(
"DAY_STATUS",
" checked=\"checked\"");
196 $add_gl = $this->
ui->factory()->symbol()->glyph()->add();
197 $rem_gl = $this->
ui->factory()->symbol()->glyph()->remove();
198 $r = $this->
ui->renderer();
211 $parts = explode(
"-", $slot);
212 $from = explode(
":",
$parts[0]);
213 $to = explode(
":",
$parts[1]);
224 $tpl->
setVariable(
"ADD_STYLE",
" style=\"display:none\"");
228 $tpl->
setVariable(
"RMV_STYLE",
" style=\"display:none\"");
244 $tpl->addJavascript(
"assets/js/ScheduleInput.js");
260 $hours = (
int) $a_hours;
261 $min = (
int) $a_minutes;
269 return str_pad($hours, 2,
"0", STR_PAD_LEFT) .
":" .
270 str_pad($min, 2,
"0", STR_PAD_LEFT);
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
loadLanguageModule(string $a_module)
Load language module.
setVariable(string $variable, $value='')
Sets the given variable to the given value.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)