55 $this->db = $DIC->database();
63 if (!is_object($udf)) {
75 if (!strlen($a_import_id)) {
78 $parts = explode(
'_', $a_import_id);
80 if ((
$parts[0] ??
'') !=
'il') {
86 if ((
$parts[2] ??
'') !=
'udf') {
91 if (is_array(($this->definitions[
$parts[3]] ??
false))) {
100 foreach ($this->definitions as $definition) {
101 if ($definition[
'field_name'] == $a_name) {
102 return $definition[
'field_id'];
110 return $this->definitions ?: array();
115 return $this->definitions[$a_id] ?? array();
120 $visible_definition = [];
121 foreach ($this->definitions as
$id => $definition) {
122 if ($definition[
'visible']) {
123 $visible_definition[
$id] = $definition;
126 return $visible_definition;
131 $visible_definition = [];
132 foreach ($this->definitions as
$id => $definition) {
133 if ($definition[
'visib_lua']) {
134 $visible_definition[
$id] = $definition;
137 return $visible_definition;
142 $visible_definition = [];
143 foreach ($this->definitions as
$id => $definition) {
144 if ($definition[
'changeable_lua']) {
145 $visible_definition[
$id] = $definition;
148 return $visible_definition;
153 $visible_definition = [];
154 foreach ($this->definitions as
$id => $definition) {
155 if ($definition[
'visib_reg']) {
156 $visible_definition[
$id] = $definition;
159 return $visible_definition;
164 $searchable_definition = [];
165 foreach ($this->definitions as
$id => $definition) {
166 if ($definition[
'searchable']) {
167 $searchable_definition[
$id] = $definition;
170 return $searchable_definition;
175 $required_definition = [];
176 foreach ($this->definitions as
$id => $definition) {
177 if ($definition[
'required']) {
178 $required_definition[
$id] = $definition;
181 return $required_definition;
186 $cexp_definition = [];
187 foreach ($this->definitions as
$id => $definition) {
188 if ($definition[
'course_export']) {
189 $cexp_definition[
$id] = $definition;
192 return $cexp_definition;
197 $cexp_definition = [];
198 foreach ($this->definitions as
$id => $definition) {
199 if ($definition[
'group_export']) {
200 $cexp_definition[
$id] = $definition;
203 return $cexp_definition;
223 $this->field_name = $a_name;
233 $this->field_type = $a_type;
238 if (!$this->field_type) {
241 switch ($this->field_type) {
262 $this->field_values = array();
263 foreach ($a_values as $value) {
264 if (strlen($value)) {
265 $this->field_values[] = $value;
272 return $this->field_values ?: array();
277 $this->field_visible = $a_visible;
287 $this->field_visib_lua = $a_visible;
297 $this->field_changeable = $a_changeable;
307 $this->field_changeable_lua = $a_changeable;
317 $this->field_required = $a_required;
327 $this->field_searchable = $a_searchable;
337 $this->field_export = $a_export;
347 $this->field_course_export = $a_course_export;
357 $this->field_group_export = $a_group_export;
367 $this->field_certificate = $a_c;
377 $this->field_visible_registration = $a_visible_registration;
387 bool $a_with_selection_info =
true 391 $lng = $DIC->language();
393 if ($a_with_selection_info) {
394 $values[
''] =
$lng->txt(
'please_select');
396 foreach ($a_values as $value) {
397 $values[$value] = $value;
399 if (count($values) > (
int) $a_with_selection_info) {
410 if (!strlen($value)) {
414 $unique[$value] = $value;
417 if (!count($unique)) {
420 if ($number != count($unique)) {
430 $ilDB = $DIC[
'ilDB'];
432 $query =
"SELECT * FROM udf_definition " .
433 "WHERE field_name = " . $this->db->quote($a_field_name,
'text') .
" ";
436 return (
bool)
$res->numRows();
443 $ilDB = $DIC[
'ilDB'];
446 $next_id =
$ilDB->nextId(
'udf_definition');
449 'field_id' => array(
'integer',$next_id),
451 'field_type' => array(
'integer', $this->
getFieldType()),
452 'field_values' => array(
'clob',serialize($this->
getFieldValues())),
466 $ilDB->insert(
'udf_definition', $values);
469 $field_id = $next_id;
477 public function delete(
int $a_id):
void 481 $ilDB = $DIC[
'ilDB'];
484 $query =
"DELETE FROM udf_definition " .
485 "WHERE field_id = " . $this->db->quote($a_id,
'integer') .
" ";
498 $ilDB = $DIC[
'ilDB'];
502 'field_type' => array(
'integer', $this->
getFieldType()),
503 'field_values' => array(
'clob',serialize($this->
getFieldValues())),
516 $ilDB->update(
'udf_definition', $values, array(
'field_id' => array(
'integer',$a_id)));
526 $query =
"SELECT * FROM udf_definition ";
529 $this->definitions = array();
531 $this->definitions[$row->field_id][
'field_id'] = $row->field_id;
532 $this->definitions[$row->field_id][
'field_name'] = $row->field_name;
533 $this->definitions[$row->field_id][
'field_type'] = $row->field_type;
534 $this->definitions[$row->field_id][
'il_id'] =
'il_' .
$ilSetting->get(
'inst_id',
'0') .
'_udf_' . $row->field_id;
537 $tmp = $sort = array();
539 foreach ((array) unserialize($row->field_values, [
'allowed_classes' =>
false]) as $item) {
540 if (!is_numeric($item)) {
543 $sort[] = array(
"value" => $item);
546 $tmp[] = $item[
"value"];
549 $this->definitions[$row->field_id][
'field_values'] = $tmp;
550 $this->definitions[$row->field_id][
'visible'] = $row->visible;
551 $this->definitions[$row->field_id][
'changeable'] = $row->changeable;
552 $this->definitions[$row->field_id][
'required'] = $row->required;
553 $this->definitions[$row->field_id][
'searchable'] = $row->searchable;
554 $this->definitions[$row->field_id][
'export'] = $row->export;
555 $this->definitions[$row->field_id][
'course_export'] = $row->course_export;
556 $this->definitions[$row->field_id][
'visib_reg'] = $row->registration_visible;
557 $this->definitions[$row->field_id][
'visib_lua'] = $row->visible_lua;
558 $this->definitions[$row->field_id][
'changeable_lua'] = $row->changeable_lua;
559 $this->definitions[$row->field_id][
'group_export'] = $row->group_export;
560 $this->definitions[$row->field_id][
'certificate'] = $row->certificate;
570 $ilDB = $DIC[
'ilDB'];
576 $new_values = array();
577 foreach ($definition[
'field_values'] as $value) {
578 if ($counter++ != $a_value_id) {
579 $new_values[] = $value;
586 'field_values' => array(
'clob',serialize($new_values)));
587 $ilDB->update(
'udf_definition', $values, array(
'field_id' => array(
'integer',$a_field_id)));
601 return $xml_writer->xmlDumpMem(
false);
612 "Id" => $definition [
"il_id"],
613 "Type" => $definition[
"field_type"] ==
UDF_TYPE_SELECT ?
"SELECT" :
"TEXT",
614 "Visible" => $definition[
"visible"] ?
"TRUE" :
"FALSE",
615 "Changeable" => $definition[
"changeable"] ?
"TRUE" :
"FALSE",
616 "Required" => $definition[
"required"] ?
"TRUE" :
"FALSE",
617 "Searchable" => $definition[
"searchable"] ?
"TRUE" :
"FALSE",
618 "CourseExport" => $definition[
"course_export"] ?
"TRUE" :
"FALSE",
619 "GroupExport" => $definition[
"group_export"] ?
"TRUE" :
"FALSE",
620 "Certificate" => $definition[
"certificate"] ?
"TRUE" :
"FALSE",
621 "Export" => $definition[
"export"] ?
"TRUE" :
"FALSE",
622 "RegistrationVisible" => $definition[
"visib_reg"] ?
"TRUE" :
"FALSE",
623 "LocalUserAdministrationVisible" => $definition[
"visib_lua"] ?
"TRUE" :
"FALSE",
624 "LocalUserAdministrationChangeable" => $definition[
"changeable_lua"] ?
"TRUE" :
"FALSE",
628 $xml_writer->
xmlElement(
'UDFName', null, $definition[
'field_name']);
630 $field_values = $definition[
"field_values"];
631 foreach ($field_values as $field_value) {
632 $xml_writer->
xmlElement(
'UDFValue', null, $field_value);
637 $xml_writer->
xmlEndTag(
"UDFDefinitions");
enableVisibleLocalUserAdministration(bool $a_visible)
static deleteEntriesOfField(int $a_field_id)
Delete data of particular field.
bool $field_course_export
fetchFieldIdFromImportId(string $a_import_id)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
int $field_visible_registration
Additional user data fields definition.
fieldValuesToSelectArray(array $a_values, bool $a_with_selection_info=true)
enableSearchable(bool $a_searchable)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSearchableDefinitions()
addToXML(ilXmlWriter $xml_writer)
add user defined field data to xml (using usr dtd)
xmlEndTag(string $tag)
Writes an endtag.
getRegistrationDefinitions()
enabledVisibleRegistration()
getExportableFields(int $a_obj_id)
Get exportable field.
nameExists(string $a_field_name)
const UDF_TYPE_TEXT
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getCourseExportableFields()
enableVisibleRegistration(bool $a_visible_registration)
enableCertificate(bool $a_c)
static deleteFieldValue(int $a_field_id, string $a_value)
Delete data of particular value of a (selection) field.
getGroupExportableFields()
fetchFieldIdFromName(string $a_name)
enabledChangeableLocalUserAdministration()
getLocalUserAdministrationDefinitions()
bool $field_changeable_lua
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
deleteValue(int $a_field_id, int $a_value_id)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
enableRequired(bool $a_required)
enableCourseExport(bool $a_course_export)
enabledVisibleLocalUserAdministration()
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setFieldName(string $a_name)
const UDF_DUPLICATE_VALUES
static _lookupType(int $id, bool $reference=false)
getChangeableLocalUserAdministrationDefinitions()
enableGroupExport(bool $a_group_export)
enableExport(bool $a_export)
setFieldType(int $a_type)
setFieldValues(array $a_values)
enableVisible(bool $a_visible)
enableChangeable(bool $a_changeable)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
enableChangeableLocalUserAdministration(bool $a_changeable)