19 declare(strict_types=1);
72 protected static function initObjectMap(): void
77 $tree = $DIC->repositoryTree();
81 $map[$obj[
"type"]] = (
int) $obj[
"ref_id"];
84 self::$OBJ_MAP = $map;
89 if (!isset(self::$OBJ_MAP)) {
90 self::initObjectMap();
92 return self::$OBJ_MAP[$a_obj_type] ?? 0;
99 $objDefinition = $DIC[
"objDefinition"];
101 $ref_id = self::getRefId($a_settings_obj_type);
104 $class_name = $objDefinition->getClassName($obj_type);
105 $class_name =
"ilObj" . $class_name .
"GUI";
106 if (is_subclass_of($class_name,
"ilObject2GUI")) {
109 $gui_obj =
new $class_name([],
$ref_id,
true,
false);
112 $gui_obj->setCreationMode(
true);
122 switch ($a_form_id) {
123 case self::FORM_SECURITY:
124 $types = array(self::SETTINGS_USER, self::SETTINGS_FILE, self::SETTINGS_ROLE);
127 case self::FORM_PRIVACY:
128 $types = array(self::SETTINGS_ROLE, self::SETTINGS_FORUM, self::SETTINGS_LRES, self::SETTINGS_COMMENTS);
131 case self::FORM_TAGGING:
133 $types = array(self::SETTINGS_REPOSITORY);
136 case self::FORM_ACCESSIBILITY:
137 $types = array(self::SETTINGS_FORUM, self::SETTINGS_AUTH, self::SETTINGS_WIKI);
140 case self::FORM_MAIL:
141 $types = array(self::SETTINGS_COURSE, self::SETTINGS_GROUP, self::SETTINGS_LEARNINGSEQUENCE);
144 case self::FORM_COURSE:
145 $types = array(self::SETTINGS_PRIVACY_SECURITY, self::SETTINGS_CALENDAR, self::SETTINGS_GENERAL);
148 case self::FORM_GROUP:
149 $types = array(self::SETTINGS_PRIVACY_SECURITY, self::SETTINGS_CALENDAR, self::SETTINGS_GENERAL, self::SETTINGS_COURSE);
153 $types = array(self::SETTINGS_PORTFOLIO);
156 case self::FORM_CERTIFICATE:
157 $types = array(self::SETTINGS_LP_COMPLETION_STATUS);
161 $types = [self::SETTINGS_USER];
169 if (is_array($types)) {
170 foreach ($types as
$type) {
171 $gui = self::getSettingsGUIInstance($type);
172 if ($gui && method_exists($gui,
"addToExternalSettingsForm")) {
173 $data = $gui->addToExternalSettingsForm($a_form_id);
174 if (is_array(
$data)) {
175 self::parseFieldDefinition($type, $a_form, $gui,
$data);
184 $parent_gui->setCreationMode(
true);
187 $data = $gui->addToExternalSettingsForm($a_form_id);
189 self::parseFieldDefinition(
"cron", $a_form, $parent_gui,
$data);
198 ?
string $a_field_type,
203 $lng = $DIC->language();
205 switch ($a_field_type) {
206 case self::VALUE_BOOL:
207 $a_field_value = $a_field_value ?
208 $lng->txt(
"enabled") :
209 $lng->txt(
"disabled");
210 return $a_field_value;
213 if (!is_numeric($a_field_value) &&
214 $a_field_value !== null && !trim($a_field_value)) {
215 $a_field_value =
"-";
218 return is_numeric($a_field_value) || $a_field_value !==
"";
221 protected static function parseFieldDefinition(
230 $request = new \ILIAS\Administration\AdminGUIRequest(
236 $lng = $DIC->language();
237 $rbacsystem = $DIC->rbac()->system();
238 $ilCtrl = $DIC->ctrl();
239 $ilAccess = $DIC->access();
241 if (!is_array($a_data)) {
248 $has_write = $ilAccess->checkAccess(
254 foreach ($a_data as $area_caption => $fields) {
255 if (is_numeric($area_caption) || !trim($area_caption)) {
256 $area_caption =
"obj_" . $a_type;
259 if (is_array($fields) && count($fields) === 2) {
261 $fields = $fields[1];
262 if (is_array($fields)) {
263 $ftpl =
new ilTemplate(
"tpl.external_settings.html",
true,
true,
"Services/Administration");
267 foreach ($fields as $field_caption_id => $field_value) {
270 $field_type = $subitems = null;
271 if (is_array($field_value)) {
272 $field_type = $field_value[1];
273 $subitems = $field_value[2] ?? [];
274 $field_value = $field_value[0];
277 if (self::parseFieldValue($field_type, $field_value)) {
278 $ftpl->setCurrentBlock(
"value_bl");
279 $ftpl->setVariable(
"VALUE", $field_value);
280 $ftpl->parseCurrentBlock();
283 if (is_array($subitems)) {
284 $ftpl->setCurrentBlock(
"subitem_bl");
285 foreach ($subitems as $sub_caption_id => $sub_value) {
287 if (is_array($sub_value)) {
288 $sub_type = $sub_value[1];
289 $sub_value = $sub_value[0];
291 self::parseFieldValue($sub_type, $sub_value);
293 $ftpl->setVariable(
"SUBKEY", $lng->txt($sub_caption_id));
294 $ftpl->setVariable(
"SUBVALUE", $sub_value);
295 $ftpl->parseCurrentBlock();
299 $ftpl->setCurrentBlock(
"row_bl");
300 $ftpl->setVariable(
"KEY", $lng->txt($field_caption_id));
301 $ftpl->parseCurrentBlock();
305 $rbacsystem->checkAccess(
"visible,read", $a_gui->
getObject()->getRefId())) {
309 $ilCtrl->setParameter($a_gui,
"ref_id", $a_gui->
getObject()->getRefId());
311 $ftpl->setCurrentBlock(
"edit_bl");
312 $ftpl->setVariable(
"URL_EDIT", $ilCtrl->getLinkTargetByClass(array(
"ilAdministrationGUI", get_class($a_gui)), $cmd));
313 $ftpl->setVariable(
"TXT_EDIT", $lng->txt(
"adm_external_setting_edit"));
314 $ftpl->parseCurrentBlock();
static getLogger(string $a_component_id)
Get component logger.
Class ilObjSystemFolderGUI.
Class ilObjectGUI Basic methods of all Output classes.
static _lookupType(int $id, bool $reference=false)