5 declare(strict_types=1);
127 $next_class = $this->ctrl->getNextClass($this);
128 $cmd = $this->ctrl->getCmd();
130 switch ($next_class) {
133 case self::CMD_SHOW_DEADLINE_CONFIG:
136 case self::CMD_CHANGE_DEADLINE:
137 $this->changeDeadline();
143 throw new Exception(
'Unknown command ' . $cmd);
152 $this->tpl->loadStandardTemplate();
153 $this->ctrl->setParameter($this,
'prgrs_ids', implode(
',', $this->
getProgressIds()));
154 $action = $this->ctrl->getFormAction(
156 self::CMD_CHANGE_DEADLINE
158 $this->ctrl->clearParameters($this);
162 $this->tpl->setContent($this->renderer->render($form));
167 $ff = $this->input_factory->field();
168 $txt =
function ($id) {
169 return $this->lng->txt($id);
172 return $this->input_factory->container()->form()->standard(
184 $ff = $this->input_factory->field();
185 $txt =
function ($id) {
186 return $this->lng->txt($id);
191 $format = $this->data_factory->dateFormat()->germanShort();
192 $deadline_date_sub_form = $ff
193 ->dateTime(
'',
$txt(
'prg_deadline_date_desc'))
198 if ($deadline_date !== null) {
199 $deadline_date_sub_form = $deadline_date_sub_form->withValue(
200 $deadline_date->format(
$format->toString())
205 $sg = $ff->switchableGroup(
208 $ff->group([],
$txt(
'prg_no_deadline')),
210 $ff->group([$deadline_date_sub_form],
$txt(
'prg_deadline_date'))
215 return $sg->withValue($option);
228 $txt(
"prg_deadline_settings"),
236 protected function changeDeadline() :
void 239 ->buildForm($this->
getObject(), $this->ctrl->getFormAction($this,
"changeDeadline"))
240 ->withRequest($this->request);
242 $result = $form->getInputGroup()->getContent();
248 $progress = $this->user_progress_db->getInstanceById($prgs_id);
249 $deadline_data = $values[0][self::PROP_DEADLINE];
250 $deadline_type = $deadline_data[0];
252 switch ($deadline_type) {
254 $progress->setDeadline(null);
257 $progress->setDeadline(DateTime::createFromFormat(
259 array_shift($deadline_data[1])
265 $progress->updateProgress($this->
user->getId());
266 $progress->updateFromProgramNode();
269 ilUtil::sendSuccess($this->lng->txt(
'update_deadline'),
true);
270 $this->ctrl->redirectByClass(
'ilObjStudyProgrammeMembersGUI',
'view');
274 $this->ctrl->redirectByClass(self::class, self::CMD_SHOW_DEADLINE_CONFIG);
284 $this->back_target = $target;
309 if ($this->
object === null) {
An entity that renders components to a string output.
This class provides processing control methods.
getDeadlineSubForm(ilObjStudyProgramme $prg)
const CMD_CHANGE_DEADLINE
Class ChatMainBarProvider .
buildForm(ilObjStudyProgramme $prg, string $submit_action)
Storage implementation for ilStudyProgrammeUserProgress.
static getInstanceByRefId($a_ref_id)
buildFormElements( $ff, Closure $txt, ilObjStudyProgramme $prg)
setProgressIds(array $progress_ids)
__construct(ilCtrl $ctrl, ilGlobalTemplateInterface $tpl, ilLanguage $lng, ilAccess $access, ilObjUser $user, Factory $input_factory, Renderer $renderer, ServerRequest $request, \ILIAS\Refinery\Factory $refinery_factory, \ILIAS\Data\Factory $data_factory, ilStudyProgrammeUserProgressDB $user_progress_db)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
const CMD_SHOW_DEADLINE_CONFIG
setBackTarget(string $target)
static redirect($a_script)