4 require_once
'./Modules/DataCollection/exceptions/class.ilDataCollectionInputException.php';
74 $query =
"SELECT * FROM il_dcl_record_field WHERE field_id = " . $this->db->quote($this->field->getId(),
"integer") .
" AND record_id = " 75 . $this->db->quote($this->record->getId(),
"integer");
76 $set = $this->db->query(
$query);
77 $rec = $this->db->fetchAssoc($set);
78 $this->
id = $rec[
'id'];
80 if ($this->
id == NULL) {
91 $id = $this->db->nextId(
"il_dcl_record_field");
92 $query =
"INSERT INTO il_dcl_record_field (id, record_id, field_id) VALUES (" . $this->db->quote(
$id,
"integer") .
", " 93 . $this->db->quote($this->record->getId(),
"integer") .
", " . $this->db->quote($this->field->getId(),
"text") .
")";
94 $this->db->manipulate(
$query);
104 $datatype = $this->field->getDatatype();
105 $query =
"DELETE FROM il_dcl_stloc" . $datatype->getStorageLocation() .
"_value WHERE record_field_id = " 106 . $this->db->quote($this->
id,
"integer");
107 $this->db->manipulate(
$query);
108 $next_id = $this->db->nextId(
"il_dcl_stloc" . $datatype->getStorageLocation() .
"_value");
111 if ($datatype->getStorageLocation() == 3 && (is_null($this->value) || empty($this->value))) {
112 $this->value =
'0000-00-00 00:00:00';
115 $this->db->insert(
"il_dcl_stloc" . $datatype->getStorageLocation() .
"_value", array(
116 "value" => array( $datatype->getDbType(),
$this->value ),
117 "record_field_id " => array(
"integer", $this->
id ),
118 "id" => array(
"integer", $next_id )
126 public function delete() {
127 $datatype = $this->field->getDatatype();
128 $query =
"DELETE FROM il_dcl_stloc" . $datatype->getStorageLocation() .
"_value WHERE record_field_id = " 129 . $this->db->quote($this->
id,
"integer");
130 $this->db->manipulate(
$query);
132 $query2 =
"DELETE FROM il_dcl_record_field WHERE id = " . $this->db->quote($this->
id,
"integer");
133 $this->db->manipulate($query2);
155 if (! $omit_parsing) {
156 $tmp = $this->field->getDatatype()->parseValue(
$value, $this);
159 if ($tmp !==
false) {
164 $this->record->deleteFile($old);
177 $datatype = $this->field->getDatatype();
179 return $datatype->parseFormInput($this->
getValue(), $this);
187 $datatype = $this->field->getDatatype();
189 return $datatype->parseExportValue($this->
getValue());
205 $datatype = $this->field->getDatatype();
207 return $datatype->parseHTML($this->
getValue(), $this, $link);
214 $datatype = $this->field->getDatatype();
216 return $datatype->parseSortingValue($this->
getValue(), $this, $link);
233 if ($this->value === NULL) {
234 $datatype = $this->field->getDatatype();
235 switch ($datatype->getId()) {
239 $query =
"SELECT * FROM il_dcl_stloc" . $datatype->getStorageLocation() .
"_value WHERE record_field_id = " 240 . $this->db->quote($this->
id,
"integer");
242 $set = $this->db->query(
$query);
243 $rec = $this->db->fetchAssoc($set);
244 $this->value = $rec[
'value'];
loadValue()
Load the value.
getSortingValue($link=true)
doCreate()
Create object in database.
doRead()
Read object data from database.
Class ilDataCollectionRecord.
doUpdate()
Update object in database.
__construct(ilDataCollectionRecord $record, ilDataCollectionField $field)
setValue($value, $omit_parsing=false)
Set value for record field.
Class ilDataCollectionField.
Class ilDataCollectionField.