19 declare(strict_types=1);
70 $this->
language->loadLanguageModule(
'cal');
75 $cmd = $this->
ctrl->getCmd(ControlFlowCommand::DEFAULT);
76 if ($this->
http->wrapper()->query()->has(
'ref_id')) {
77 $ref_id = $this->
http->wrapper()->query()->retrieve(
87 $backClass = strtolower(ilObjEmployeeTalkGUI::class);
88 $this->
ctrl->setParameterByClass($backClass,
'ref_id',
$ref_id);
89 $this->
tabs->setBackTarget(
91 $this->
ctrl->getLinkTargetByClass(strtolower(ilObjEmployeeTalkGUI::class), ControlFlowCommand::UPDATE)
95 case self::EDIT_MODE_SERIES:
98 case self::EDIT_MODE_APPOINTMENT:
102 $this->
ctrl->redirectByClass(strtolower(ilObjEmployeeTalkGUI::class), ControlFlowCommand::UPDATE);
109 $this->
template->setTitle($this->
language->txt(
'etal_date_series_edit'));
112 case ControlFlowCommand::UPDATE_INDEX:
115 case ControlFlowCommand::UPDATE:
123 $this->
template->setTitle($this->
language->txt(
'etal_date_appointment_edit'));
126 case ControlFlowCommand::UPDATE_INDEX:
129 case ControlFlowCommand::UPDATE:
130 $this->updateAppointment();
139 $this->
template->setOnScreenMessage(
'info',
$message . $dates_string);
143 $this->
template->setContent($form->getHTML());
148 $parent = $this->talk->getParent();
152 $a = $a->
getData()->getStartDate()->getUnixTime();
153 $b = $b->
getData()->getStartDate()->getUnixTime();
157 return $a < $b ? -1 : 1;
163 foreach ($talks as $talk) {
173 if ($form->checkInput()) {
175 $parent = $this->talk->getParent();
177 $this->createRecurringTalks($form, $reoccurrence, $parent);
180 $this->
template->setOnScreenMessage(
'success', $this->
language->txt(
'saved_successfully'),
true);
183 $this->
ctrl->redirectToURL(
184 $this->
ctrl->getLinkTargetByClass(
185 strtolower(ilEmployeeTalkMyStaffListGUI::class),
186 ControlFlowCommand::UPDATE_INDEX
195 $form->setFormAction($this->
ctrl->getFormActionByClass(
196 strtolower(self::class)
200 $header->setTitle($this->
language->txt(
'appointment'));
201 $form->addItem($header);
204 $dur->setRequired(
true);
205 $dur->setShowTime(
true);
207 if ($employeeTalk !==
null) {
208 $dur->enableToggleFullTime(
209 $this->
language->txt(
'cal_fullday_title'),
210 $employeeTalk->isAllDay()
213 $dur->setStart($employeeTalk->getStartDate());
214 $dur->setEnd($employeeTalk->getEndDate());
217 $form->addItem($dur);
218 $form->addCommandButton(ControlFlowCommand::UPDATE, $this->
language->txt(
'save'),
'etal_date_save');
227 $form->setFormAction($this->
ctrl->getFormActionByClass(
228 strtolower(self::class)
232 $header->setTitle($this->
language->txt(
'appointments'));
233 $form->addItem($header);
236 $dur->setRequired(
true);
237 $dur->setShowTime(
true);
239 if ($employeeTalk !==
null) {
240 $dur->enableToggleFullTime(
241 $this->
language->txt(
'cal_fullday_title'),
242 $employeeTalk->isAllDay()
245 $dur->setStart($employeeTalk->getStartDate());
246 $dur->setEnd($employeeTalk->getEndDate());
249 $form->addItem($dur);
255 $cal->allowUnlimitedRecurrences(
false);
256 $cal->setRecurrence($event);
258 $form->addItem($cal);
259 $form->addCommandButton(ControlFlowCommand::UPDATE, $this->
language->txt(
'save'),
'etal_series_save');
268 $this->
template->setContent($form->getHTML());
271 private function updateAppointment():
void 274 $form->setValuesByPost();
275 if ($form->checkInput()) {
279 $dateTimeInput = $form->getItemByPostVar(
'event');
280 $tgl = $form->getInput(
'event')[
'tgl'] ?? 0;
281 [
'start' => $start,
'end' => $end] = $dateTimeInput->getValue();
290 $data = $this->talk->getData();
291 $data->setAllDay(boolval(intval($tgl)));
292 $data->setStartDate($start_date);
293 $data->setEndDate($end_date);
294 $data->setStandalone(
true);
296 $this->talk->setData(
$data);
297 $this->talk->update();
301 $this->
template->setOnScreenMessage(
'success', $this->
language->txt(
'saved_successfully'),
true);
305 $this->
ctrl->redirectToURL(
306 $this->
ctrl->getLinkTargetByClass(
307 strtolower(self::class),
308 ControlFlowCommand::UPDATE_INDEX
315 $this->notif_handler->send(NotificationType::UPDATE, ...$talks);
321 if ($this->
http->wrapper()->query()->has(self::EDIT_MODE)) {
322 $mode = $this->
http->wrapper()->query()->retrieve(
324 $this->
refinery->kindlyTo()->string()
327 if ($mode === self::EDIT_MODE_SERIES || $mode === self::EDIT_MODE_APPOINTMENT) {
342 switch ($form->
getInput(
'frequence')) {
344 $rec->setFrequenceType($form->
getInput(
'frequence'));
345 $rec->setInterval((
int) $form->
getInput(
'count_DAILY'));
349 $rec->setFrequenceType($form->
getInput(
'frequence'));
350 $rec->setInterval((
int) $form->
getInput(
'count_WEEKLY'));
351 if (is_array($form->
getInput(
'byday_WEEKLY'))) {
357 $rec->setFrequenceType($form->
getInput(
'frequence'));
358 $rec->setInterval((
int) $form->
getInput(
'count_MONTHLY'));
359 switch ((
int) $form->
getInput(
'subtype_MONTHLY')) {
365 switch ((
int) $form->
getInput(
'monthly_byday_day')) {
368 $rec->setBYSETPOS($form->
getInput(
'monthly_byday_num'));
369 $rec->setBYDAY(
'MO,TU,WE,TH,FR');
374 $rec->setBYMONTHDAY($form->
getInput(
'monthly_byday_num'));
378 $rec->setBYDAY(($form->
getInput(
'monthly_byday_num') . $form->
getInput(
'monthly_byday_day')));
384 $rec->setBYMONTHDAY($form->
getInput(
'monthly_bymonthday'));
390 $rec->setFrequenceType($form->
getInput(
'frequence'));
391 $rec->setInterval((
int) $form->
getInput(
'count_YEARLY'));
392 switch ((
int) $form->
getInput(
'subtype_YEARLY')) {
398 $rec->setBYMONTH($form->
getInput(
'yearly_bymonth_byday'));
399 $rec->setBYDAY(($form->
getInput(
'yearly_byday_num') . $form->
getInput(
'yearly_byday')));
403 $rec->setBYMONTH($form->
getInput(
'yearly_bymonth_by_monthday'));
404 $rec->setBYMONTHDAY($form->
getInput(
'yearly_bymonthday'));
411 switch ((
int) $form->
getInput(
'until_type')) {
413 $rec->setFrequenceUntilDate(
null);
418 $rec->setFrequenceUntilDate(
null);
419 $rec->setFrequenceUntilCount((
int) $form->
getInput(
'count'));
424 $end = $frequence->getRecurrence()->getFrequenceUntilDate();
425 $rec->setFrequenceUntilCount(0);
426 $rec->setFrequenceUntilDate($end);
438 $data = $this->loadEtalkData($form);
441 $data->getStartDate(),
447 $periodStart = clone
$data->getStartDate();
449 $periodEnd = clone
$data->getStartDate();
451 $dateIterator = $calc->calculateDateList($periodStart, $periodEnd);
457 $talkSession->setTitle($this->talk->getTitle());
458 $talkSession->setDescription($this->talk->getLongDescription());
460 $talkSession->setOwner($series->
getOwner());
461 $talkSession->create();
463 $talkSession->createReference();
464 $talkSession->putInTree($series->
getRefId());
466 $data->setObjectId($talkSession->getId());
467 $talkSession->setData(
$data);
468 $talkSession->update();
471 $talks[] = $talkSession;
479 $dateIterator->removeByDAY($periodStart);
480 $dateIterator->rewind();
485 foreach ($dateIterator as $date) {
486 $cloneObject = $talkSession->cloneObject($series->
getRefId());
487 $cloneData = $cloneObject->getData();
489 $cloneData->setStartDate($date);
491 if ($cloneData->isAllDay()) {
496 $cloneObject->setData($cloneData);
497 $cloneObject->update();
499 $cloneObject->setOwner($series->
getOwner());
500 $cloneObject->updateOwner();
502 $talks[] = $cloneObject;
516 foreach ($subItems as $subItem) {
517 if ($subItem[
'type'] ===
'etal') {
518 $refId = intval($subItem[
'ref_id']);
521 if ($talk_data->isStandalone() || $talk_data->isCompleted()) {
536 foreach ($talks as $talk) {
543 $data = $this->talk->getData();
544 $tgl = $form->
getInput(
'event')[
'tgl'] ?? 0;
550 [
'start' => $start,
'end' => $end] = $dateTimeInput->getValue();
563 boolval(intval($tgl)),
565 $data->getLocation(),
566 $data->getEmployee(),
569 $data->getTemplateId()
static array static setUseRelativeDates(bool $a_status)
set use relative dates
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSubItems(bool $a_admin_panel_enabled=false, bool $a_include_side_block=false, int $a_get_single=0, ?ilContainerUserFilter $container_user_filter=null)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Model of calendar entry recurrcences based on iCalendar-RFC-5545.
getPendingTalksInSeries(ilObjEmployeeTalkSeries $series)
deleteTalks(array $talks)
__construct(ilGlobalTemplateInterface $template, ilLanguage $language, ilCtrl $ctrl, HttpServices $http, Refinery $refinery, ilTabsGUI $tabs, NotificationHandlerInterface $notif_handler, ilObjEmployeeTalk $talk)
const string EDIT_MODE_APPOINTMENT
static useRelativeDates()
getEditModeParameter(string $mode)
getFrequenceType()
Get Frequence type of recurrence.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
loadRecurrenceSettings(ilPropertyFormGUI $form)
static http()
Fetches the global http state from ILIAS.
Calculates an ilDateList for a given calendar entry and recurrence rule.
sendNotification(ilObjEmployeeTalk ... $talks)
const string EDIT_MODE_SERIES
executeAppointmentCommand(string $cmd)
executeSeriesCommand(string $cmd)
initSeriesEditForm(?EmployeeTalk $employeeTalk=null)
NotificationHandlerInterface $notif_handler
Class ilEmployeeTalkAppointmentGUI.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
initTalkEditForm(?EmployeeTalk $employeeTalk=null)
language()
description: > Example for rendring a language glyph.
ilGlobalTemplateInterface $template