85 public function doUpdate($omit_notification =
false)
95 "last_update" => array(
103 "last_edit_by" => array(
120 $recordfield->doUpdate();
124 if (!$omit_notification) {
126 $objDataCollection->sendNotification(
"update_record", $this->
getTableId(), $this->
id);
137 $ilDB = $DIC[
'ilDB'];
139 $query =
"Select * From il_dcl_record WHERE id = " .
$ilDB->quote($this->
getId(),
"integer") .
" ORDER BY id";
142 $rec =
$ilDB->fetchAssoc($set);
158 $ilDB = $DIC[
'ilDB'];
161 throw new ilException(
"The field does not have a related table!");
164 $id =
$ilDB->nextId(
"il_dcl_record");
167 =
"INSERT INTO il_dcl_record ( 182 $recordField->doCreate();
195 $this->recordfields[$field_id]->delete();
196 if (count($this->recordfields) == 1) {
231 $this->table_id = $a_id;
253 $this->create_date = $a_datetime;
275 $this->last_update = $a_datetime;
297 $this->owner = $a_id;
343 $record_field = $this->recordfields[$field_id];
345 $this->recordfields[$field_id]->setValue($value);
363 $this->recordfields[$field_id]->setValueFromForm($form);
380 return $this->recordfields[$field->getId()]->getValueFromExcel($excel, $row, $col);
392 $value = $field->getValueFromExcel($excel, $row, $col);
394 $this->{$field->getId()} = $value;
407 foreach ($this->recordfields as
$id => $record_field) {
408 $return[
$id] = $record_field->getValue();
424 if ($field_id === null) {
431 return $this->recordfields[$field_id]->getValue();
445 if ($field_id === null) {
452 return $this->recordfields[$field_id]->getValueForRepresentation();
470 return $this->recordfields[$field_id]->getExportValue();
488 return $this->recordfields[$field_id]->getPlainText();
503 if ($field_id ==
'owner') {
507 $worksheet->
setCell($row, $col, $name_array[
'lastname'] .
', ' . $name_array[
'firstname']);
514 $this->recordfields[$field_id]->fillExcelExport($worksheet, $row, $col);
530 if (is_object($this->recordfields[$field_id])) {
531 $value = $this->recordfields[$field_id]->getFormulaValue();
552 if (is_object($this->recordfields[$field_id])) {
553 $html = $this->recordfields[$field_id]->getRecordRepresentation()->getHTML();
580 if (is_object($this->recordfields[$field_id])) {
581 $html = $this->recordfields[$field_id]->getSortingValue();
602 public function getRecordFieldSingleHTML($field_id, array $options = array())
609 $field = $this->recordfields[$field_id];
614 $html = $field->getRecordRepresentation()->getSingleHTML($options,
false);
635 $this->recordfields[$field_id]->getRecordRepresentation()->fillFormInput($form);
646 if ($item = $form->getItemByPostVar(
"field_" . $field_id)) {
664 $this->$field_id = $value;
674 if ($item = $form->getItemByPostVar(
'field_' . $field_id)) {
694 return $usr_data[
'login'];
698 return $this->$field_id;
722 return $this->
getId();
737 $this->table->getCollectionObject()
744 return "<a class='dcl_comment' href='#' onclick=\"return " . $ajax_link .
"\"> 746 .
"' alt='{$nComments} Comments'><span class='ilHActProp'>{$nComments}</span></a>";
761 $this->table->getCollectionObject()->getId(),
782 if ($this->recordfields == null) {
785 foreach ($this->table->getRecordFields() as $field) {
801 if ($this->table == null) {
816 return $this->recordfields[$field_id];
825 public function doDelete($omit_notification =
false)
828 $ilDB = $DIC[
'ilDB'];
829 $ilAppEventHandler = $DIC[
'ilAppEventHandler'];
832 foreach ($this->recordfields as $recordfield) {
838 $this->
deleteMob($recordfield->getValue());
841 $recordfield->delete();
844 $query =
"DELETE FROM il_dcl_record WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
847 $this->table->loadRecords();
849 if (!$omit_notification) {
851 $objDataCollection->sendNotification(
"delete_record", $this->
getTableId(), $this->
getId());
853 $ilAppEventHandler->raise(
854 'Modules/DataCollection',
858 'table_id' => $this->table_id,
859 'record_id' => $this->
getId(),
880 $this->
setOwner($original->getOwner());
882 foreach ($new_fields as $old => $new) {
883 $old_rec_field = $original->getRecordField($old);
885 $new_rec_field->cloneStructure($old_rec_field);
886 $this->recordfields[] = $new_rec_field;
931 foreach ($this->table->getFilterableFields() as $field) {
932 if (!isset($filter[
"filter_" . $field->getId()]) || !$filter[
"filter_" . $field->getId()]) {
951 return $this->
getTable()->hasPermissionToEditRecord($ref_id, $this);
962 return $this->
getTable()->hasPermissionToDeleteRecord($ref_id, $this);
973 return $this->
getTable()->hasPermissionToViewRecord($ref_id, $this);
1006 if ($this->comments === null) {
static _lookupLogin($a_user_id)
lookup login
static _lookupName($a_user_id)
lookup user name
static setCloneOf($old, $new, $type)
getStandardFieldFormulaValue($field_id)
static _lookupObjId($a_id)
getCreateDate()
Get Creation Date.
getRecordFieldExportValue($field_id)
Get Field Export Value.
hasPermissionToView($ref_id)
doDelete($omit_notification=false)
Delete.
getStandardFieldPlainText($field_id)
setStandardFieldValueFromExcel($excel, $row, $col, $field)
getRecordFieldHTML($field_id, array $options=array())
getTableId()
Get Table ID.
static _getNotesOfObject( $a_rep_obj_id, $a_obj_id, $a_obj_type, $a_type=IL_NOTE_PRIVATE, $a_incl_sub=false, $a_filter="", $a_all_public="y", $a_repository_mode=true, $a_sort_ascending=false, $a_news_id=0)
get all notes related to a specific object
deleteMob($obj_id)
Delete MOB.
passThroughFilter(array $filter)
getStandardFieldHTML($field_id, array $options=array())
setRecordFieldValue($field_id, $value)
Set a field value.
static getTableCache($table_id=0)
setLastEditBy($last_edit_by)
setCreateDate($a_datetime)
Set Creation Date.
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
setLastUpdate($a_datetime)
Set Last Update Date.
setStandardField($field_id, $value)
loadRecordFields()
Load record fields.
static getFieldRepresentation(ilDclBaseFieldModel $field)
getRecordField($field_id)
getRecordFieldFormulaValue($field_id)
setStandardFieldFromForm($field_id, &$form)
cloneStructure($original_id, $new_fields)
static _tableExists($table_id)
setOwner($a_id)
Set Owner.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static getRecordCache($record_id=0)
setCell($a_row, $a_col, $a_value, $a_datatype=null)
Set cell value.
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static _isStandardField($field_id)
static buildAjaxHash( $a_node_type, $a_node_id, $a_obj_type, $a_obj_id, $a_sub_type=null, $a_sub_id=null, $a_news_id=0)
Build ajax hash.
fillRecordFieldExcelExport(ilExcel $worksheet, &$row, &$col, $field_id)
static getListCommentsJSCall($a_hash, $a_update_code=null)
Get list comments js call.
deleteFile($obj_id)
Delete a file.
getRecordFieldPlainText($field_id)
Get Field Export Value.
hasPermissionToEdit($ref_id)
setId($a_id)
Set field id.
getLastUpdate()
Get Last Update Date.
static getRecordFieldCache($record, $field)
Class ilDclBaseRecordModel.
setRecordFieldValueFromForm($field_id, &$form)
Set a field value.
getRecordFieldValue($field_id)
Get Field Value.
getRecordFieldValueFromExcel($excel, $row, $col, $field)
getRecordFieldRepresentationValue($field_id)
Get Field Value for Representation in a Form.
getStandardField($field_id)
static _exists($a_id, $a_reference=false, $a_type=null)
hasPermissionToDelete($ref_id)
doUpdate($omit_notification=false)
doUpdate
setTableId($a_id)
Set Table ID.
Class ilObjDataCollection.
fillRecordFieldFormInput($field_id, &$form)
getRecordFieldSortingValue($field_id, array $options=array())
fillStandardFieldFormInput($field_id, &$form)
getComments()
Get all comments of this record.