64 $this->obj_orgu->update();
74 protected function initForm()
76 $this->
setFormAction($this->ctrl->getFormAction($this->parent_gui));
77 $this->
setTitle($this->lng->txt(
'orgu_settings'));
80 $item->setRequired(
true);
81 $item->setValue($this->obj_orgu->getTitle());
85 $item->
setValue($this->obj_orgu->getDescription());
89 $item->setTitle($this->lng->txt(
'orgu_type'));
92 $options = array(0 =>
'');
94 foreach ($types as
$type) {
95 $options[$type->getId()] = $type->getTitle();
99 $item->setOptions($options);
100 $item->setValue($this->obj_orgu->getOrgUnitTypeId());
104 $item->setTitle($this->lng->txt(
'ext_id'));
108 $item->setValue($this->obj_orgu->getImportId());
126 $this->obj_orgu->setOrgUnitTypeId($this->
getInput(
'orgu_type'));
127 $this->obj_orgu->setImportId($this->
getInput(
'ext_id'));
128 $this->obj_orgu->setTitle($this->
getInput(
'title'));
129 $this->obj_orgu->setDescription($this->
getInput(
'description'));
140 $translations = $this->obj_orgu->getTranslations();
141 $lang_code_default =
'';
142 $lang_codes = array();
143 foreach ($translations as $translation) {
144 if ($translation[
'lang_default']) {
145 $lang_code_default = $translation[
'lang'];
147 $lang_codes[] = $translation[
'lang'];
149 $lang_code = (in_array($this->
user->getLanguage(), $lang_codes)) ? $this->
user->getLanguage() : $lang_code_default;
150 $this->obj_orgu->updateTranslation($this->
getInput(
'title'), $this->
getInput(
'description'), $lang_code, 0);
setValue($a_value)
Set Value.
static getAllTypes()
Get array of all instances of ilOrgUnitType objects.
This class represents a text area property in a property form.