19 declare(strict_types=1);
47 $this->
ctrl = $DIC->ctrl();
48 $this->
user = $DIC->user();
49 $this->db = $DIC->database();
50 $this->
lng = $DIC->language();
51 $this->
http = $DIC->http();
65 $query =
"SELECT * FROM il_dcl_record_field WHERE field_id = " . $this->db->quote(
68 ) .
" AND record_id = " 70 $set = $this->db->query($query);
71 $rec = $this->db->fetchAssoc($set);
72 $this->
id = $rec[
'id'] ??
null;
82 $id = $this->db->nextId(
"il_dcl_record_field");
83 $query =
"INSERT INTO il_dcl_record_field (id, record_id, field_id) VALUES (" . $this->db->quote(
90 ) .
", " . $this->db->quote($this->
getField()->
getId(),
"text") .
")";
91 $this->db->manipulate($query);
101 $datatype = $this->
getField()->getDatatype();
102 $storage_location = ($this->
getField()->getStorageLocationOverride() !==
null) ? $this->
getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
104 if ($storage_location != 0) {
105 $query =
"DELETE FROM il_dcl_stloc" . $storage_location .
"_value WHERE record_field_id = " 106 . $this->db->quote($this->
id,
"integer");
107 $this->db->manipulate($query);
109 $next_id = $this->db->nextId(
"il_dcl_stloc" . $storage_location .
"_value");
113 if (empty($this->
getId())) {
118 "value" => [$datatype->getDbType(),
$value],
119 "record_field_id" => [
"integer", $this->
getId()],
120 "id" => [
"integer", $next_id],
123 $this->db->insert(
"il_dcl_stloc" . $storage_location .
"_value", $insert_params);
130 public function delete():
void 132 $datatype = $this->
getField()->getDatatype();
133 $storage_location = ($this->
getField()->getStorageLocationOverride() !==
null) ? $this->
getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
135 if ($storage_location != 0) {
136 $query =
"DELETE FROM il_dcl_stloc" . $storage_location .
"_value WHERE record_field_id = " 137 . $this->db->quote($this->
id,
"integer");
138 $this->db->manipulate($query);
141 $query2 =
"DELETE FROM il_dcl_record_field WHERE id = " . $this->db->quote($this->
id,
"integer");
142 $this->db->manipulate($query2);
184 $deserialize = json_decode((
string)
$value,
true);
185 if (is_array($deserialize)) {
200 if (!$omit_parsing) {
203 if ($tmp !==
false) {
238 return (
string) $excel->
getCell($row, $col);
291 $confirmation->
addHiddenItem(
'field_' . $this->field->getId() .
"[$key]", (string)
$value);
311 if ($this->value ===
null) {
312 $datatype = $this->
getField()->getDatatype();
314 $storage_location = ($this->
getField()->getStorageLocationOverride() !==
null) ? $this->
getField()->getStorageLocationOverride() : $datatype->getStorageLocation();
315 if ($storage_location != 0) {
316 $query =
"SELECT * FROM il_dcl_stloc" . $storage_location .
"_value WHERE record_field_id = " 317 . $this->db->quote($this->
id,
"integer");
319 $set = $this->db->query($query);
320 $rec = $this->db->fetchAssoc($set);
parseValue($value)
Function to parse incoming data from form input value $value.
ILIAS HTTP Services $http
setValueFromForm(ilPropertyFormGUI $form)
ilDclBaseRecordRepresentation $record_representation
fillExcelExport(ilExcel $worksheet, int &$row, int &$col)
setValue($value, bool $omit_parsing=false)
Set value for record field.
getValueForRepresentation()
__construct(ilDclBaseRecordModel $record, ilDclBaseFieldModel $field)
addHiddenItem(string $a_post_var, string $a_value)
doRead()
Read object data from database.
getValueFromExcel(ilExcel $excel, int $row, int $col)
doCreate()
Creates an Id and a database entry.
cloneStructure(ilDclBaseRecordFieldModel $old_record_field)
deserializeData($value)
Deserialize data before applying to field.
ilDclBaseFieldRepresentation $field_representation
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
parseExportValue($value)
Function to parse incoming data from form input value $value.
setRecordRepresentation(ilDclBaseRecordRepresentation $record_representation)
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
static http()
Fetches the global http state from ILIAS.
addHiddenItemsToConfirmation(ilConfirmationGUI $confirmation)
doUpdate()
Update object in database.
setFieldRepresentation(ilDclBaseFieldRepresentation $field_representation)
parseSortingValue($value, bool $link=true)
Returns sortable value for the specific field-types.
serializeData($value)
Serialize data before storing to db.
getCell(int $a_row, int $a_col)
Returns the value of a cell.
loadValue()
Load the value.
ILIAS Refinery Factory $refinery
ilDclBaseFieldModel $field
getRecordRepresentation()
getSortingValue(bool $link=true)
ilDclBaseRecordModel $record