3 declare(strict_types=1);
70 Psr\Http\Message\ServerRequestInterface $request,
76 ILIAS\
HTTP\Wrapper\RequestWrapper $request_wrapper
79 $this->
ctrl = $ilCtrl;
103 $next_class = $this->
ctrl->getNextClass();
104 switch ($next_class) {
105 case 'ilstudyprogrammecommonsettingsgui':
106 $this->
tabs->activateSubTab(self::TAB_COMMON_SETTINGS);
107 $this->common_settings_gui->setObject($this->
getObject());
108 $content = $this->
ctrl->forwardCommand($this->common_settings_gui);
111 $cmd = $this->
ctrl->getCmd();
112 if ($cmd ===
"" || $cmd === null) {
117 $content = $this->
view();
120 $content = $this->$cmd();
124 "ilObjStudyProgrammeSettingsGUI: Command not supported: $cmd" 129 if (!$this->
ctrl->isAsynch()) {
130 $this->tpl->setContent($content);
133 $heading = $this->tmp_heading ?? $this->
lng->txt(
"prg_async_" . $this->
ctrl->getCmd());
134 $output_handler->setHeading($heading);
135 $output_handler->setContent($content);
136 $output_handler->terminate();
140 protected function view(): string
143 $this->
lng->txt(
'prg_async_settings'),
144 $this->request_wrapper->has(
"currentNode")
148 return $this->renderer->render($form);
157 ->buildForm($this->
getObject(), $this->
ctrl->getFormAction($this,
"update"))
158 ->withRequest($this->request);
160 $result = $form->getInputGroup()->getContent();
165 if ($result->isOK()) {
166 $result->value()->update();
167 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"msg_obj_modified"),
true);
169 if ($this->
ctrl->isAsynch()) {
173 "message" => $this->
lng->txt(
"msg_obj_modified"))
178 $this->
ctrl->redirect($this);
180 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"msg_form_save_error"));
182 if ($this->
ctrl->isAsynch()) {
186 "errors" => $form->getError())
191 return $this->renderer->render($form);
197 if (!$current_node) {
198 $this->
ctrl->saveParameterByClass(
'ilobjstudyprogrammesettingsgui',
'ref_id');
200 $heading_button->setCaption(
'prg_open_node');
201 $heading_button->setUrl(
202 $this->
ctrl->getLinkTargetByClass(
203 'ilobjstudyprogrammetreegui',
211 "<div class='pull-right'>" .
212 $heading_button->render() .
215 $this->tmp_heading = $heading;
217 $this->tmp_heading =
"<div class=''>" . $label .
"</div>";
223 string $submit_action
226 $ff = $this->input_factory->field();
227 $sp_types = $this->type_repository->getAllTypesArray();
230 return $this->input_factory->container()->form()->standard(
238 )->withAdditionalTransformation(
239 $this->refinery_factory->custom()->transformation(
240 function ($values) use ($prg) {
241 $object_data = $values[0];
242 $prg->
setTitle($object_data[self::PROP_TITLE]);
246 ->withAssessmentSettings($values[
'prg_assessment'])
247 ->withDeadlineSettings($values[
'prg_deadline'])
248 ->withValidityOfQualificationSettings($values[
'prg_validity_of_qualification'])
249 ->withAutoMailSettings($values[
'automail_settings'])
250 ->withTypeSettings($values[
'prg_type']);
268 "prg_type" => $settings
270 ->toFormInput($ff, $this->
lng, $this->refinery_factory, $sp_types)
272 "prg_assessment" => $settings
274 ->toFormInput($ff, $this->
lng, $this->refinery_factory)
276 "prg_deadline" => $settings
278 ->toFormInput($ff, $this->
lng, $this->refinery_factory, $this->data_factory)
280 "prg_validity_of_qualification" => $settings
282 ->toFormInput($ff, $this->
lng, $this->refinery_factory, $this->data_factory)
284 "automail_settings" => $settings
286 ->toFormInput($ff, $this->
lng, $this->refinery_factory)
301 $ff->text($this->txt(
"title"))
303 ->withRequired(
true),
305 $ff->textarea($this->
txt(
"description"))
308 $this->
txt(
"prg_edit"),
309 $this->
txt(
"language") .
": " .
$lang .
310 ' <a href="' . $this->
ctrl->getLinkTargetByClass(
"ilobjecttranslationgui",
"") .
311 '">» ' . $this->
txt(
"obj_more_translations") .
'</a>' 317 if ($this->
object === null) {
323 protected function txt(
string $code): string
325 return $this->
lng->txt($code);
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
Class ilAsyncOutputHandler Handles the output for async-requests.
An entity that renders components to a string output.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static handleAsyncOutput(string $normal_content, string $async_content=null, bool $apply_to_tpl=true)
Handles async output.
Class ChatMainBarProvider .
const OPT_VALIDITY_OF_QUALIFICATION_PERIOD
const OPT_NO_VALIDITY_OF_QUALIFICATION
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjStudyProgramme $object
static getInstanceByRefId($ref_id)
buildForm(ilObjStudyProgramme $prg, string $submit_action)
loadLanguageModule(string $a_module)
Load language module.
const OPT_VALIDITY_OF_QUALIFICATION_DATE
buildFormElements(InputFieldFactory $ff, ilObjectTranslation $trans, array $sp_types, ilStudyProgrammeSettings $settings)
Psr Http Message ServerRequestInterface $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilStudyProgrammeTypeRepository $type_repository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $renderer
setDescription(string $desc)
ilStudyProgrammeCommonSettingsGUI $common_settings_gui
ilGlobalTemplateInterface $tpl
static encodeAsyncResponse(array $data=array())
Encode data as json for async output.
getValidityOfQualificationSettings()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const TAB_COMMON_SETTINGS
ILIAS Refinery Factory $refinery_factory
__construct(ilGlobalTemplateInterface $tpl, ilCtrl $ilCtrl, ilLanguage $lng, Factory $input_factory, Renderer $renderer, Psr\Http\Message\ServerRequestInterface $request, ILIAS\Refinery\Factory $refinery_factory, ILIAS\Data\Factory $data_factory, ilStudyProgrammeTypeRepository $type_repository, ilStudyProgrammeCommonSettingsGUI $common_settings_gui, ilTabsGUI $tabs, ILIAS\HTTP\Wrapper\RequestWrapper $request_wrapper)
const OPT_DEADLINE_PERIOD
const PROP_VALIDITY_OF_QUALIFICATION
ILIAS Data Factory $data_factory
ILIAS UI Component Input Factory $input_factory
ilObjStudyProgrammeSettingsGUI: ilStudyProgrammeCommonSettingsGUI
buildModalHeading(string $label, bool $current_node)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateSettings(ilStudyProgrammeSettings $settings)
getEditSection(InputFieldFactory $ff, ilObjectTranslation $trans)