19 declare(strict_types=1);
23 protected string $id =
"";
68 $this->db = $DIC->database();
69 $this->
lng = $DIC->language();
72 $this->
id = (string) $a_id;
83 return '/^[^<>\\\\":]*$/i';
92 $ilDB = $DIC->database();
94 $result =
$ilDB->query(
95 'SELECT id FROM il_dcl_field WHERE title = ' .
$ilDB->quote($title,
'text') .
' AND table_id = ' 96 .
$ilDB->quote($table_id,
'integer')
99 while ($rec =
$ilDB->fetchAssoc($result)) {
112 $this->
id = (string) $a_id;
128 $this->table_id = $a_id;
145 if (substr($a_title, 0, 1) ==
"_" && substr($a_title, 0, 2) !=
"__") {
146 $a_title =
"_" . $a_title;
148 $this->title = $a_title;
164 $this->description = $a_desc;
181 $this->datatype =
null;
182 $this->datatype_id = $a_id;
204 $this->unique = (bool) $unique;
217 return $this->datatype->getTitle();
241 return $this->datatype->getStorageLocation();
249 if ($this->datatype ==
null) {
260 $this->exportable = $tablefield_setting->isExportable();
261 $this->order = $tablefield_setting->getFieldOrder();
269 if (!isset($this->exportable)) {
281 if ($this->exportable ==
null) {
288 return (array) $this;
299 $query =
"SELECT * FROM il_dcl_field WHERE id = " . $this->db->quote($this->
getId(),
"integer");
300 $set = $this->db->query($query);
301 $rec = $this->db->fetchAssoc($set);
305 if (
null !== $rec[
"title"]) {
308 if (
null !== $rec[
"description"]) {
312 $this->
setUnique((
bool) $rec[
"is_unique"]);
324 $this->
setId($rec[
"id"]);
335 throw new ilException(
"The field does not have a related table!");
338 $id = $this->db->nextId(
"il_dcl_field");
340 $query =
"INSERT INTO il_dcl_field (" .
"id" .
", table_id" .
", datatype_id" .
", title" .
", description" .
", is_unique" 341 .
" ) VALUES (" . $this->db->quote($this->
getId(),
"integer") .
"," . $this->db->quote(
345 . $this->db->quote($this->
getDatatypeId(),
"integer") .
"," . $this->db->quote($this->
getTitle(),
"text") .
"," 346 . $this->db->quote($this->
getDescription(),
"text") .
"," . $this->db->quote($this->
isUnique(),
"integer") .
")";
347 $this->db->manipulate($query);
360 $tableview->createFieldSetting($this->
id);
406 foreach ($this->property as $prop) {
417 $tablefield_setting->setExportable($this->exportable);
418 $tablefield_setting->setFieldOrder($this->
getOrder());
419 $tablefield_setting->store();
430 $query =
"DELETE FROM il_dcl_field_prop WHERE field_id = " . $this->db->quote($this->
getId(),
"text");
431 $this->db->manipulate($query);
433 $query =
"DELETE FROM il_dcl_field WHERE id = " . $this->db->quote($this->
getId(),
"text");
434 $this->db->manipulate($query);
437 $field_setting->delete();
456 if ($this->order ==
null) {
483 return (isset($this->property[$key]) && $this->property[$key]->
getValue() !=
null);
490 return ($instance !==
null) ? $instance->getValue() :
null;
497 return $this->
property[$key];
506 if (isset($this->property[$key])) {
507 $this->
property[$key]->setValue($value);
510 $property->setName($key);
511 $property->setFieldId((
int) $this->
getId());
512 $property->setValue($value);
517 return $this->
property[$key];
542 if (!isset($value)) {
548 foreach ($table->getRecords() as $record) {
549 if ($record->getId() !== $record_id || $record_id === 0) {
562 if (is_string($value)) {
563 $value = trim(preg_replace(
"/\\s+/uism",
" ", $value));
575 $this->
setTitle($original->getTitle());
578 $this->
setOrder($original->getOrder());
590 foreach ($records as $rec) {
598 if (count($orgProps) == 0) {
601 foreach ($orgProps as $prop_name) {
603 $fieldprop_obj->setFieldId((
int) $this->
getId());
604 $fieldprop_obj->setName($prop_name);
614 $fieldprop_obj->setValue($value);
615 $fieldprop_obj->create();
635 string $direction =
"asc",
636 bool $sort_by_status =
false 640 $select_str =
"sort_stloc_{$this->getId()}.value AS field_{$this->getId()}";
642 =
"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 = " 643 . $this->db->quote($this->
getId(),
'integer') .
") ";
644 $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)";
646 $sql_obj->setSelectStatement($select_str);
647 $sql_obj->setJoinStatement($join_str);
648 $sql_obj->setOrderStatement(
"field_{$this->getId()} $direction, ID ASC");
718 foreach ($titles as $k => $title) {
719 if (!mb_detect_encoding($title,
"UTF-8",
true) ==
"UTF-8") {
720 $title = mb_convert_encoding($title,
'UTF-8',
'ISO-8859-1');
723 $import_fields[$k] = $this;
736 foreach ($field_props as $property) {
737 $value = $form->
getInput($representation->getPropertyInputFieldId($property));
740 if (!empty($value) || ($this->
getPropertyInstance($property) !=
null && $property != self::PROP_PLUGIN_HOOK_NAME)) {
753 'field_id' => $this->
getId(),
761 foreach ($properties as $prop) {
762 $values[
'prop_' . $prop] = $this->
getProperty($prop);
786 $ilConfirmationGUI->addHiddenItem(
'confirmed',
"1");
787 $ilConfirmationGUI->addHiddenItem(
'field_id', $form->
getInput(
'field_id'));
788 $ilConfirmationGUI->addHiddenItem(
'title', $form->
getInput(
'title'));
789 $ilConfirmationGUI->addHiddenItem(
'description', $form->
getInput(
'description'));
790 $ilConfirmationGUI->addHiddenItem(
'datatype', $form->
getInput(
'datatype'));
791 $ilConfirmationGUI->addHiddenItem(
'unique', $form->
getInput(
'unique'));
792 $ilConfirmationGUI->setConfirm($this->
lng->txt(
'dcl_update_field'),
'update');
793 $ilConfirmationGUI->setCancel($this->
lng->txt(
'cancel'),
'edit');
795 return $ilConfirmationGUI;
getPropertyInstance(string $key)
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
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
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.
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)
addToTableViews()
create ilDclTableViewFieldSettings for this field in each tableview
getTableId()
Get table id.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const PROP_FORMULA_EXPRESSION
loadExportability()
Load exportability.
static getDatatype(int $datatyp_id)
Get cached datatypes.
const PROP_LINK_DETAIL_PAGE_TEXT
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
loadProperties()
Get all properties of a field.
setDatatypeId(int $a_id)
Set datatype id.
static getTableViewFieldSetting(string $id, int $tableview_id)
cloneProperties(ilDclBaseFieldModel $originalField)
cloneStructure(int $original_id)
const PROP_LENGTH
General properties.
const PROP_LEARNING_PROGRESS
const PROP_DISPLAY_COPY_LINK_ACTION_MENU
static getTableCache(?int $table_id=null)
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)
normalizeValue(mixed $value)
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)
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)
static getFieldProperties(string $field_id)
Cache Field properties.
setId($a_id)
Set field id.
getDatatypeId()
Get datatype_id.
static _getTitleInvalidChars(bool $a_as_regex=true)
All valid chars for filed titles.