30 $this->lng = $DIC->language();
31 $this->tpl = $DIC[
"tpl"];
42 $this->value = $a_value;
62 $this->validationFailureMessage = $a_msg;
67 return $this->validationFailureMessage;
92 foreach (
$data as $slot => $days) {
94 $this->
setAlert(
$lng->txt(
"msg_input_does_not_match_regexp"));
98 $parts = explode(
"-", $slot);
99 $from = str_replace(
":",
"", $parts[0]);
100 $to = str_replace(
":",
"", $parts[1]);
102 $this->
setAlert(
$lng->txt(
"msg_input_does_not_match_regexp"));
106 foreach (
$data as $rslot => $rdays) {
107 if ($slot != $rslot && $rdays && array_intersect($days, $rdays)) {
108 $rparts = explode(
"-", $rslot);
109 $rfrom = str_replace(
":",
"", $rparts[0]);
110 $rto = str_replace(
":",
"", $rparts[1]);
112 if (($rfrom > $from && $rfrom < $to) ||
113 ($rto > $from && $rto < $to) ||
114 ($rfrom < $from && $rto > $to)) {
115 $this->
setAlert(
$lng->txt(
"msg_input_does_not_match_regexp"));
133 public static function getPostData($a_post_var, $a_remove_invalid =
true)
136 for ($loop = 0; $loop < 240; $loop++) {
137 $days =
$_POST[$a_post_var .
"_days~" . $loop];
138 $from = self::parseTime(
139 $_POST[$a_post_var .
"_from_hh~" . $loop],
140 $_POST[$a_post_var .
"_from_mm~" . $loop]
142 $to = self::parseTime(
143 $_POST[$a_post_var .
"_to_hh~" . $loop],
144 $_POST[$a_post_var .
"_to_mm~" . $loop]
148 if ($days || $from !=
"00:00" || $to !=
"00:00") {
149 $slot = $from .
"-" . $to;
151 if (isset(
$res[$slot])) {
152 $res[$slot] = array_unique(array_merge(
$res[$slot], $days));
157 $res[$slot] = array();
160 if ($a_remove_invalid && !($days && $from && $to && $from != $to)) {
176 $tpl =
new ilTemplate(
"tpl.schedule_input.html",
true,
true,
"Modules/BookingManager");
178 $lng->loadLanguageModule(
"dateplaner");
182 $def = array(null => null);
185 $days = array(
"Mo",
"Tu",
"We",
"Th",
"Fr",
"Sa",
"Su");
187 foreach ($def as $slot => $days_select) {
188 $tpl->setCurrentBlock(
"days");
189 foreach ($days as $day) {
190 $day_value = strtolower($day);
192 $tpl->setVariable(
"ROW", $row);
195 $tpl->setVariable(
"DAY", $day_value);
196 $tpl->setVariable(
"TXT_DAY",
$lng->txt($day .
"_short"));
198 if ($days_select && in_array($day_value, $days_select)) {
199 $tpl->setVariable(
"DAY_STATUS",
" checked=\"checked\"");
202 $tpl->parseCurrentBlock();
205 $tpl->setCurrentBlock(
"row");
206 $tpl->setVariable(
"ROW", $row);
209 $tpl->setVariable(
"TXT_FROM",
$lng->txt(
"cal_from"));
210 $tpl->setVariable(
"TXT_TO",
$lng->txt(
"cal_until"));
213 $tpl->setVariable(
"TXT_MULTI_ADD",
$lng->txt(
"add"));
214 $tpl->setVariable(
"TXT_MULTI_REMOVE",
$lng->txt(
"remove"));
217 $parts = explode(
"-", $slot);
218 $from = explode(
":", $parts[0]);
219 $to = explode(
":", $parts[1]);
221 $tpl->setVariable(
"FROM_HH_VALUE", $from[0]);
222 $tpl->setVariable(
"FROM_MM_VALUE", $from[1]);
223 $tpl->setVariable(
"TO_HH_VALUE", $to[0]);
224 $tpl->setVariable(
"TO_MM_VALUE", $to[1]);
230 $tpl->setVariable(
"ADD_STYLE",
" style=\"display:none\"");
234 $tpl->setVariable(
"RMV_STYLE",
" style=\"display:none\"");
238 $tpl->parseCurrentBlock();
255 $tpl->addJavascript(
"Modules/BookingManager/js/ScheduleInput.js");
259 $a_tpl->setCurrentBlock(
"prop_generic");
260 $a_tpl->setVariable(
"PROP_GENERIC", $html);
261 $a_tpl->parseCurrentBlock();
269 protected static function parseTime($a_hours, $a_minutes)
271 $hours = (int) $a_hours;
272 $min = (int) $a_minutes;
273 if ($hours > 23 || $min > 59) {
276 return str_pad($hours, 2,
"0", STR_PAD_LEFT) .
":" .
277 str_pad($min, 2,
"0", STR_PAD_LEFT);
static get($a_glyph, $a_text="")
Get glyph html.
foreach($_POST as $key=> $value) $res
__construct(Container $dic, ilPlugin $plugin)