3 declare(strict_types=1);
129 $this->
object = null;
138 $this->ref_id = $a_ref_id;
143 $next_class = $this->ctrl->getNextClass();
144 switch ($next_class) {
145 case 'ilstudyprogrammecommonsettingsgui':
146 $this->tabs->activateSubTab(self::TAB_COMMON_SETTINGS);
147 $this->common_settings_gui->setObject($this->
getObject());
148 $content = $this->ctrl->forwardCommand($this->common_settings_gui);
151 $cmd = $this->ctrl->getCmd();
157 $content = $this->
view();
160 $content = $this->$cmd();
164 "ilObjStudyProgrammeSettingsGUI: " .
"Command not supported: $cmd" 169 if (!$this->ctrl->isAsynch()) {
170 $this->tpl->setContent($content);
173 $heading = $this->lng->txt(
"prg_async_" . $this->ctrl->getCmd());
174 if (isset($this->tmp_heading)) {
177 $output_handler->setHeading($heading);
178 $output_handler->setContent($content);
179 $output_handler->terminate();
187 $form = $this->
buildForm($this->
getObject(), $this->ctrl->getFormAction($this,
"update"));
188 return $this->renderer->render($form);
194 ->buildForm($this->
getObject(), $this->ctrl->getFormAction($this,
"update"))
195 ->withRequest($this->request);
197 $result = $form->getInputGroup()->getContent();
204 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
206 if ($this->ctrl->isAsynch()) {
210 "message" => $this->lng->txt(
"msg_obj_modified"))
214 $this->ctrl->redirect($this);
219 if ($this->ctrl->isAsynch()) {
223 "errors" => $form->getErrors())
227 return $this->renderer->render($form);
234 if (!$current_node) {
235 $this->ctrl->saveParameterByClass(
'ilobjstudyprogrammesettingsgui',
'ref_id');
237 $heading_button->setCaption(
'prg_open_node');
238 $heading_button->setUrl(
239 $this->ctrl->getLinkTargetByClass(
240 'ilobjstudyprogrammetreegui',
248 "<div class='pull-right'>" .
249 $heading_button->render() .
252 $this->tmp_heading = $heading;
254 $this->tmp_heading =
"<div class=''>" . $label .
"</div>";
260 string $submit_action
263 $ff = $this->input_factory->field();
264 $sp_types = $this->type_repository->readAllTypesArray();
266 return $this->input_factory->container()->form()->standard(
274 )->withAdditionalTransformation(
275 $this->refinery_factory->custom()->transformation(
276 function ($values) use ($prg) {
278 $object_data = $values[0];
279 $prg->
setTitle($object_data[self::PROP_TITLE]);
282 $type_settings = $values[
'prg_type'];
283 $type = $type_settings->getTypeId();
286 $prg->updateCustomIcon();
292 $values[
'prg_validity_of_qualification']
304 InputFieldFactory $ff,
310 $ilLng = $DIC->language();
311 $refinery = $DIC[
"refinery"];
317 ->toFormInput($ff, $ilLng, $refinery, $sp_types)
319 "prg_assessment" => $prg
321 ->toFormInput($ff, $ilLng, $refinery)
323 "prg_deadline" => $prg
325 ->toFormInput($ff, $ilLng, $refinery, $this->data_factory)
327 "prg_validity_of_qualification" => $prg
329 ->toFormInput($ff, $ilLng, $refinery, $this->data_factory)
331 "automail_settings" => $prg
333 ->toFormInput($ff, $ilLng, $refinery)
340 InputFieldFactory $ff,
347 $ff->text($this->txt(
"title"))
349 ->withRequired(
true),
351 $ff->textarea($this->
txt(
"description"))
354 $this->
txt(
"prg_edit"),
356 ' <a href="' . $this->ctrl->getLinkTargetByClass(
"ilobjecttranslationgui",
"") .
357 '">» ' . $this->
txt(
"obj_more_translations") .
'</a>' 363 if ($this->
object === null) {
369 protected function txt(
string $code) : string
371 return $this->lng->txt($code);
setAutoMailSettings(\ilStudyProgrammeAutoMailSettings $automail_settings)
Class ilAsyncOutputHandler Handles the output for async-requests.
An entity that renders components to a string output.
buildFormElements(InputFieldFactory $ff, ilObjectTranslation $trans, array $sp_types, ilObjStudyProgramme $prg)
This class provides processing control methods.
setValidityOfQualificationSettings(\ilStudyProgrammeValidityOfAchievedQualificationSettings $validity_of_qualification_settings)
setDeadlineSettings(\ilStudyProgrammeDeadlineSettings $deadline_settings)
Class ChatMainBarProvider .
const OPT_VALIDITY_OF_QUALIFICATION_PERIOD
const OPT_NO_VALIDITY_OF_QUALIFICATION
const OPT_VALIDITY_OF_QUALIFICATION_DATE
setTypeSettings(\ilStudyProgrammeTypeSettings $type_settings)
setTitle($a_title)
set object title
Covers the persistence of sp-type related information.
buildModalHeading($label, $current_node)
getDefaultDescription()
Get default description.
static getInstanceByRefId($a_ref_id)
const PROP_ACCESS_CONTROL_BY_ORGU_POSITION
static encodeAsyncResponse(array $data=array())
Encode data as json for async output.
getDefaultTitle()
Get default title.
setAssessmentSettings(\ilStudyProgrammeAssessmentSettings $assessment_settings)
getObjectTranslation()
Get object translation.
const TAB_COMMON_SETTINGS
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
getValidityOfQualificationSettings()
loadLanguageModule($a_module)
setDescription($a_desc)
set object description
const OPT_DEADLINE_PERIOD
__construct(\ilGlobalTemplateInterface $tpl, \ilCtrl $ilCtrl, \ilLanguage $lng, Factory $input_factory, Renderer $renderer, ServerRequest $request, \ILIAS\Refinery\Factory $refinery_factory, \ILIAS\Data\Factory $data_factory, ilStudyProgrammeTypeRepository $type_repository, ilStudyProgrammeCommonSettingsGUI $common_settings_gui, ilTabsGUI $tabs)
const PROP_VALIDITY_OF_QUALIFICATION
getDefaultLanguage()
Get default language.
buildForm(\ilObjStudyProgramme $prg, string $submit_action)
ilObjStudyProgrammeSettingsGUI: ilStudyProgrammeCommonSettingsGUI
static handleAsyncOutput($normal_content, $async_content=null, $apply_to_tpl=true)
Handles async output.
Class handles translation mode for an object.
getEditSection(InputFieldFactory $ff, ilObjectTranslation $trans)