21 protected string $id =
"";
66 $this->db = $DIC->database();
67 $this->
lng = $DIC->language();
81 return '/^[^<>\\\\":]*$/i';
91 $result =
$ilDB->query(
92 'SELECT id FROM il_dcl_field WHERE title = ' .
$ilDB->quote($title,
'text') .
' AND table_id = ' 93 .
$ilDB->quote($table_id,
'integer')
96 while ($rec =
$ilDB->fetchAssoc($result)) {
125 $this->table_id = $a_id;
142 if (substr($a_title, 0, 1) ==
"_" && substr($a_title, 0, 2) !=
"__") {
143 $a_title =
"_" . $a_title;
145 $this->title = $a_title;
161 $this->description = $a_desc;
178 $this->datatype = null;
179 $this->datatypeId = $a_id;
201 $this->unique = $unique ? 1 : 0;
214 return $this->datatype->getTitle();
238 return $this->datatype->getStorageLocation();
246 if ($this->datatype == null) {
257 $this->exportable = $tablefield_setting->isExportable();
258 $this->order = $tablefield_setting->getFieldOrder();
266 if (!isset($this->exportable)) {
278 if ($this->exportable == null) {
285 return (array) $this;
296 $query =
"SELECT * FROM il_dcl_field WHERE id = " . $this->db->quote($this->
getId(),
"integer");
297 $set = $this->db->query(
$query);
298 $rec = $this->db->fetchAssoc($set);
302 if (null !== $rec[
"title"]) {
305 if (null !== $rec[
"description"]) {
321 $this->
setId($rec[
"id"]);
326 $this->
setUnique($rec[
"is_unique"] ?? null);
332 $ilDB = $DIC[
'ilDB'];
335 throw new ilException(
"The field does not have a related table!");
338 $id =
$ilDB->nextId(
"il_dcl_field");
340 $query =
"INSERT INTO il_dcl_field (" .
"id" .
", table_id" .
", datatype_id" .
", title" .
", description" .
", is_unique" 341 .
" ) VALUES (" .
$ilDB->quote($this->
getId(),
"integer") .
"," .
$ilDB->quote(
360 $tableview->createFieldSetting($this->
id);
367 $ilDB = $DIC[
'ilDB'];
376 "datatype_id" => array(
384 "description" => array(
388 "is_unique" => array(
409 foreach ($this->property as $prop) {
420 $tablefield_setting->setExportable($this->exportable);
421 $tablefield_setting->setFieldOrder($this->
getOrder());
422 $tablefield_setting->store();
431 $ilDB = $DIC[
'ilDB'];
436 $query =
"DELETE FROM il_dcl_field_prop WHERE field_id = " .
$ilDB->quote($this->
getId(),
"text");
439 $query =
"DELETE FROM il_dcl_field WHERE id = " .
$ilDB->quote($this->
getId(),
"text");
443 $field_setting->delete();
463 if ($this->order == null) {
490 return (isset($this->property[$key]) && $this->property[$key]->
getValue() != null);
501 return ($instance !== null) ? $instance->getValue() : null;
512 $value = $this->
property[
$key];
527 if (isset($this->property[$key])) {
528 $this->
property[
$key]->setValue($value);
531 $property->setName($key);
532 $property->setFieldId($this->
getId());
533 $property->setValue($value);
538 return $this->
property[
$key];
563 if ($value == null) {
569 foreach ($table->getRecords() as $record) {
570 if ($this->
normalizeValue($record->getRecordFieldValue($this->getId())) == $this->
normalizeValue($value) && ($record->getId() != $record_id || $record_id == 0)) {
584 if (is_string($value)) {
585 $value = trim(preg_replace(
"/\\s+/uism",
" ", $value));
597 $this->
setTitle($original->getTitle());
600 $this->
setOrder($original->getOrder());
612 foreach ($records as $rec) {
620 if (count($orgProps) == 0) {
623 foreach ($orgProps as $prop_name) {
625 $fieldprop_obj->setFieldId($this->
getId());
626 $fieldprop_obj->setName($prop_name);
636 $fieldprop_obj->setValue($value);
637 $fieldprop_obj->create();
657 string $direction =
"asc",
658 bool $sort_by_status =
false 661 $ilDB = $DIC[
'ilDB'];
665 $select_str =
"sort_stloc_{$this->getId()}.value AS field_{$this->getId()}";
667 =
"LEFT JOIN il_dcl_record_field AS sort_record_field_{$this->getId()} ON (sort_record_field_{$this->getId()}.record_id = record.id AND sort_record_field_{$this->getId()}.field_id = " 668 .
$ilDB->quote($this->
getId(),
'integer') .
") ";
669 $join_str .=
"LEFT JOIN il_dcl_stloc{$this->getStorageLocation()}_value AS sort_stloc_{$this->getId()} ON (sort_stloc_{$this->getId()}.record_field_id = sort_record_field_{$this->getId()}.id)";
671 $sql_obj->setSelectStatement($select_str);
672 $sql_obj->setJoinStatement($join_str);
673 $sql_obj->setOrderStatement(
"field_{$this->getId()} {$direction}, ID ASC");
743 foreach ($titles as $k => $title) {
745 $title = utf8_encode($title);
748 $import_fields[$k] = $this;
759 foreach ($field_props as $property) {
761 $value = $form->
getInput($representation->getPropertyInputFieldId($property));
764 if (!empty($value) || ($this->
getPropertyInstance($property) != null && $property != self::PROP_PLUGIN_HOOK_NAME)) {
777 'field_id' => $this->
getId(),
785 foreach ($properties as $prop) {
786 $values[
'prop_' . $prop] = $this->
getProperty($prop);
811 $ilConfirmationGUI->addHiddenItem(
'confirmed', 1);
812 $ilConfirmationGUI->addHiddenItem(
'field_id', $form->
getInput(
'field_id'));
813 $ilConfirmationGUI->addHiddenItem(
'title', $form->
getInput(
'title'));
814 $ilConfirmationGUI->addHiddenItem(
'description', $form->
getInput(
'description'));
815 $ilConfirmationGUI->addHiddenItem(
'datatype', $form->
getInput(
'datatype'));
816 $ilConfirmationGUI->addHiddenItem(
'unique', $form->
getInput(
'unique'));
817 $ilConfirmationGUI->setConfirm($DIC->language()->txt(
'dcl_update_field'),
'update');
818 $ilConfirmationGUI->setCancel($DIC->language()->txt(
'cancel'),
'edit');
820 return $ilConfirmationGUI;
getPropertyInstance(string $key)
Return ActiveRecord of property.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasProperty(string $key)
Checks if a certain property for a field is set.
const PROP_REFERENCE_LINK
checkTitlesForImport(array &$titles, array &$import_fields)
getConfirmationGUI(ilPropertyFormGUI $form)
called by ilDclFieldEditGUI if isConfirmationRequired returns true
static getFieldProperties($field_id)
Cache Field properties.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkFieldCreationInput(ilPropertyFormGUI $form)
Checks input of specific fields befor saving.
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
getPresentationDescription()
checkValidityFromForm(ilPropertyFormGUI &$form, ?int $record_id=null)
static getFieldRepresentationInstance(ilDclBaseFieldModel $field)
isConfirmationRequired(ilPropertyFormGUI $form)
called by ilDclFieldEditGUI when updating field properties if you overwrite this method, remember to also overwrite getConfirmationGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const PROP_SUPPORTED_FILE_TYPES
doDelete()
Remove field and properties.
storePropertiesFromForm(ilPropertyFormGUI $form)
called when saving the 'edit field' form
buildFromDBRecord(array $rec)
Builds model from db record.
loadTableFieldSetting()
loadTableFieldSetting
static getFieldCache(int $field_id=0)
updateProperties()
Update properties of this field in Database.
getSortField()
Returns the sort-field id.
const PROP_PLUGIN_HOOK_NAME
static _getDatatypeForId(string $id)
gives you the datatype id of a specified standard field.
setCell(int $a_row, int $a_col, $a_value, ?string $a_datatype=null)
Set cell value.
fillPropertiesForm(ilPropertyFormGUI &$form)
called to fill the 'edit field' form
static _getFieldIdByTitle(string $title, int $table_id)
getStorageLocation()
Get storage location for the model.
static where($where, $operator=null)
checkValidity($value, ?int $record_id=null)
Check if input is valid.
setExportable(bool $exportable)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addToTableViews()
create ilDclTableViewFieldSettings for this field in each tableview
getTableId()
Get table id.
const PROP_FORMULA_EXPRESSION
loadExportability()
Load exportability.
static getDatatype(int $datatyp_id)
Get cached datatypes.
const PROP_LINK_DETAIL_PAGE_TEXT
loadProperties()
Get all properties of a field.
setDatatypeId(int $a_id)
Set datatype id.
static getTableCache(int $table_id=null)
static getTableViewFieldSetting(string $id, int $tableview_id)
cloneProperties(ilDclBaseFieldModel $originalField)
cloneStructure(int $original_id)
const PROP_LENGTH
General properties.
const PROP_LEARNING_PROGRESS
static isUtf8(string $a_str)
Check whether string is utf-8.
const PROP_DISPLAY_COPY_LINK_ACTION_MENU
getViewSetting(int $tableview_id)
static setCloneOf(int $old, int $new, string $type)
static getInstance(int $table_id, string $field)
getDescription()
Get description.
loadDatatype()
Load datatype for model.
afterClone(array $records)
updateTableFieldSetting()
update exportable and fieldorder
const INPUTFORMAT_REFERENCE
int $storage_location_override
With this property the datatype-storage-location can be overwritten.
hasNumericSorting()
Set to true, when the sorting should be handled numerical.
fillHeaderExcel(ilExcel $worksheet, int &$row, int &$col)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRecordQuerySortObject(string $direction="asc", bool $sort_by_status=false)
Returns a query-object for building the record-loader-sql-query.
const PROP_LINK_DETAIL_PAGE_MOB
setStorageLocationOverride(?int $storage_location_override)
getProperty(string $key)
Returns a certain property of a field.
setTitle(string $a_title)
Set title.
setDescription(string $a_desc)
Set description.
getValidFieldProperties()
Returns all valid properties for a field-type.
static getRecordFieldCache(object $record, object $field)
static getAllForTableId(int $table_id)
setTableId(int $a_id)
Set table id.
getStorageLocationOverride()
const PROP_ILIAS_REFERENCE_LINK
static _tableExists(int $table_id)
setProperty(string $key, $value)
Set a property for a field (does not save)
setId($a_id)
Set field id.
getDatatypeId()
Get datatype_id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getTitleInvalidChars(bool $a_as_regex=true)
All valid chars for filed titles.