ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDataCollectionRecord.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once './Modules/DataCollection/classes/class.ilDataCollectionRecordField.php';
5 require_once './Modules/DataCollection/classes/class.ilDataCollectionDatatype.php';
6 require_once './Services/Exceptions/classes/class.ilException.php';
7 require_once './Services/User/classes/class.ilUserUtil.php';
8 
21 {
25  private $recordfields;
26  private $id;
27  private $table_id;
28 
32  private $table;
33  private $last_edit_by;
34 
41  public function __construct($a_id = 0)
42  {
43  if($a_id != 0)
44  {
45  $this->id = $a_id;
46  $this->doRead();
47  }
48  }
49 
50 
54  public function doUpdate()
55  {
56  global $ilDB;
57 
58  $ilDB->update("il_dcl_record", array(
59  "table_id" => array("integer", $this->getTableId()),
60  "last_update" => array("date", $this->getLastUpdate()),
61  "owner" => array("text", $this->getOwner()),
62  "last_edit_by" => array("text", $this->getLastEditBy())
63  ), array(
64  "id" => array("integer", $this->id)
65  ));
66 
67  foreach($this->getRecordFields() as $recordfield)
68  {
69  $recordfield->doUpdate();
70  }
71 
72  include_once "./Modules/DataCollection/classes/class.ilObjDataCollection.php";
73  ilObjDataCollection::sendNotification("update_record", $this->getTableId(), $this->id);
74  }
75 
79  public function doRead()
80  {
81  global $ilDB;
82  //build query
83  $query = "Select * From il_dcl_record WHERE id = ".$ilDB->quote($this->getId(),"integer")." ORDER BY id";
84 
85  $set = $ilDB->query($query);
86  $rec = $ilDB->fetchAssoc($set);
87 
88  $this->setTableId($rec["table_id"]);
89  $this->setCreateDate($rec["create_date"]);
90  $this->setLastUpdate($rec["last_update"]);
91  $this->setOwner($rec["owner"]);
92  $this->setLastEditBy($rec["last_edit_by"]);
93  }
94 
101  public function doCreate()
102  {
103  global $ilDB;
104 
106  throw new ilException("The field does not have a related table!");
107 
108  // Record erzeugen
109  $id = $ilDB->nextId("il_dcl_record");
110  $this->setId($id);
111  $query = "INSERT INTO il_dcl_record (
112  id,
113  table_id,
114  create_date,
115  Last_update,
116  owner,
117  last_edit_by
118  ) VALUES (".
119  $ilDB->quote($this->getId(), "integer").",".
120  $ilDB->quote($this->getTableId(), "integer").",".
121  $ilDB->quote($this->getCreateDate(), "timestamp").",".
122  $ilDB->quote($this->getLastUpdate(), "timestamp").",".
123  $ilDB->quote($this->getOwner(), "integer").",".
124  $ilDB->quote($this->getLastEditBy(), "integer")."
125  )";
126  $ilDB->manipulate($query);
127 
128  include_once "./Modules/DataCollection/classes/class.ilObjDataCollection.php";
129  }
130 
131  /*
132  * deleteField
133  */
134  public function deleteField($field_id)
135  {
136  $this->loadRecordFields();
137  $this->recordfields[$field_id]->delete();
138  if(count($this->recordfields) == 1)
139  $this->doDelete();
140  }
141 
147  public function setId($a_id)
148  {
149  $this->id = $a_id;
150  }
151 
157  public function getId()
158  {
159  return $this->id;
160  }
161 
167  public function setTableId($a_id)
168  {
169  $this->table_id = $a_id;
170  }
171 
177  public function getTableId()
178  {
179  return $this->table_id;
180  }
181 
187  public function setCreateDate($a_datetime)
188  {
189  $this->create_date = $a_datetime;
190  }
191 
197  public function getCreateDate()
198  {
199  return $this->create_date;
200  }
201 
207  public function setLastUpdate($a_datetime)
208  {
209  $this->last_update = $a_datetime;
210  }
211 
217  public function getLastUpdate()
218  {
219  return $this->last_update;
220  }
221 
227  public function setOwner($a_id)
228  {
229  $this->owner = $a_id;
230  }
231 
237  public function getOwner()
238  {
239  return $this->owner;
240  }
241 
242  /*
243  * getLastEditBy
244  */
245  public function getLastEditBy()
246  {
247  return $this->last_edit_by;
248  }
249 
250  /*
251  * setLastEditBy
252  */
253  public function setLastEditBy($last_edit_by)
254  {
255  $this->last_edit_by = $last_edit_by;
256  }
257 
258 
265  public function setRecordFieldValue($field_id, $value)
266  {
267  $this->loadRecordFields();
268 
270  {
271  $this->setStandardField($field_id, $value);
272  }
273  else
274  {
275  $this->loadTable();
276  $this->recordfields[$field_id]->setValue($value);
277  }
278  }
279 
285  public function getRecordFieldValues()
286  {
287  $this->loadRecordFields();
288 
289  foreach($this->recordfields as $id => $record_field)
290  {
291  $return[$id] = $record_field->getValue();
292  }
293 
294  return (array) $return;
295  }
296 
303  public function getRecordFieldValue($field_id)
304  {
305  $this->loadRecordFields();
306 
308  {
309  return $this->getStandardField($field_id);
310  }
311  else
312  {
313  return $this->recordfields[$field_id]->getValue();
314  }
315  }
316 
317 
324  public function getRecordFieldExportValue($field_id)
325  {
326  $this->loadRecordFields();
327 
329  {
330  return $this->getStandardFieldHTML($field_id);
331  }
332  else
333  {
334  return $this->recordfields[$field_id]->getExportValue();
335  }
336  }
337 
338 
339 
340  /*
341  * getRecordFieldHTML
342  *
343  * @param int $field_id
344  * @param array $options
345  * @return array
346  */
347  public function getRecordFieldHTML($field_id,array $options = array())
348  {
349 
350  $this->loadRecordFields();
351  $html = "";
352 
354  {
355  $html = $this->getStandardFieldHTML($field_id);
356 
357  }
358  else
359  {
360  $html = $this->recordfields[$field_id]->getHTML($options);
361  }
362 
363  // This is a workaround as templating in ILIAS currently has some issues with curly brackets.see: http://www.ilias.de/mantis/view.php?id=12681#bugnotes
364  $html = str_ireplace("{", "&#123;", $html);
365  $html = str_ireplace("}", "&#125;", $html);
366 
367  return $html;
368  }
369 
370  /*
371  * getRecordFieldSingleHTML
372  *
373  * @param int $field_id
374  * @param array $options
375  * @return array
376  */
377  public function getRecordFieldSingleHTML($field_id,array $options = array())
378  {
379  $this->loadRecordFields();
380 
382  {
383  return $this->getStandardFieldHTML($field_id);
384  }
385  else
386  {
387  return $this->recordfields[$field_id]->getSingleHTML($options);
388  }
389  }
390 
391 
392 
393  /*
394  * getRecordFieldFormInput
395  *
396  * @param int $field_id
397  * @return array
398  */
399  public function getRecordFieldFormInput($field_id)
400  {
401  $this->loadRecordFields();
403  {
404  return $this->getStandardField($field_id);
405  }
406  else
407  {
408  return $this->recordfields[$field_id]->getFormInput();
409  }
410  }
411 
412 
413  /*
414  * setStandardField
415  *
416  * @param int $field_id
417  * @param mixed $value
418  */
419 
420  private function setStandardField($field_id, $value)
421  {
422  switch($field_id)
423  {
424  case "last_edit_by":
425  $this->setLastEditBy($value);
426  return;
427  }
428  $this->$field_id = $value;
429  }
430 
431 
432  /*
433  * getStandardField
434  *
435  * @param int $field_id
436  * @return mixed
437  */
438  private function getStandardField($field_id)
439  {
440  switch($field_id)
441  {
442  case "last_edit_by":
443  return $this->getLastEditBy();
444  break;
445  case 'owner':
446  $usr_data = ilObjUser::_lookupName($this->getOwner());
447  return $usr_data['login'];
448  break;
449  }
450 
451  return $this->$field_id;
452  }
453 
454  /*
455  * getStandardFieldHTML
456  *
457  * @param int $field_id
458  * @return mixed
459  */
460  private function getStandardFieldHTML($field_id)
461  {
462  switch($field_id)
463  {
464  case 'owner':
465  return ilUserUtil::getNamePresentation($this->getOwner());
466  case 'last_edit_by':
468  case 'last_update':
470  case 'create_date':
472  }
473 
474  return $this->$field_id;
475  }
476 
477 
478  /*
479  * loadRecordFields
480  */
481  private function loadRecordFields()
482  {
483  if($this->recordfields == NULL)
484  {
485  $this->loadTable();
486  $recordfields = array();
487  foreach($this->table->getRecordFields() as $field)
488  {
489  if($recordfields[$field->getId()] == NULL)
490  {
491  $recordfields[$field->getId()] = ilDataCollectionCache::getRecordFieldCache($this, $field);
492  }
493  }
494 
495  $this->recordfields = $recordfields;
496  }
497  }
498 
499  /*
500  * loadTable
501  */
502  private function loadTable()
503  {
504  include_once("class.ilDataCollectionTable.php");
505 
506  if($this->table == NULL)
507  {
508  $this->table = ilDataCollectionCache::getTableCache($this->getTableId());
509  }
510  }
511 
512  /*
513  * getRecordField
514  */
515  public function getRecordField($field_id)
516  {
517  $this->loadRecordFields();
518 
519  return $this->recordfields[$field_id];
520  }
521 
522  /*
523  * doDelete
524  */
525  public function doDelete()
526  {
527  global $ilDB;
528 
529  $this->loadRecordFields();
530 
531  foreach($this->recordfields as $recordfield)
532  {
533  if($recordfield->getField()->getDatatypeId() == ilDataCollectionDatatype::INPUTFORMAT_FILE)
534  $this->deleteFile($recordfield->getValue());
535 
536  if($recordfield->getField()->getDatatypeId() == ilDataCollectionDatatype::INPUTFORMAT_MOB)
537  $this->deleteMob($recordfield->getValue());
538 
539 
540  $recordfield->delete();
541  }
542 
543 
544  $query = "DELETE FROM il_dcl_record WHERE id = ".$ilDB->quote($this->getId(), "integer");
545  $ilDB->manipulate($query);
546 
547  include_once "./Modules/DataCollection/classes/class.ilObjDataCollection.php";
548  ilObjDataCollection::sendNotification("delete_record", $this->getTableId(), $this->getId());
549  }
550 
551  /*
552  * deleteFile
553  */
554  public function deleteFile($obj_id)
555  {
556  if(ilObject2::_exists($obj_id)){
557  $file = new ilObjFile($obj_id, false);
558  $file->delete();
559  }
560  }
561 
562 
563  /*
564  * deleteMob
565  */
566  public function deleteMob($obj_id)
567  {
568  if(ilObject2::_exists($obj_id)){
569  $mob = new ilObjMediaObject($obj_id);
570  $mob->delete();
571  }
572  }
573 
574  /*
575  * passThroughFilter
576  */
577  public function passThroughFilter(array $filter)
578  {
579  $this->loadTable();
580  // If one field returns false, the whole record does not pass the filter #performance-improvements
581  foreach ($this->table->getFilterableFields() as $field) {
582  if (!isset($filter["filter_" . $field->getId()]) || !$filter["filter_" . $field->getId()]) continue;
583  if(!ilDataCollectionDatatype::passThroughFilter($this, $field, $filter["filter_".$field->getId()]))
584  {
585  return false;
586  }
587  }
588  return true;
589  }
590 
591  /*
592  * hasPermissionToEdit
593  */
594  public function hasPermissionToEdit($ref)
595  {
596  return $this->getTable()->hasPermissionToEditRecord($ref, $this);
597  }
598 
599  /*
600  * hasPermissionToDelete
601  */
602  public function hasPermissionToDelete($ref)
603  {
604  return $this->getTable()->hasPermissionToDeleteRecord($ref, $this);
605  }
606 
607  /*
608  * getRecordFields
609  */
610  public function getRecordFields()
611  {
612  $this->loadRecordFields();
613 
614  return $this->recordfields;
615  }
616 
620  public function getTable()
621  {
622  $this->loadTable();
623 
624  return $this->table;
625  }
626 }
627 ?>
static _lookupName($a_user_id)
lookup user name
print $file
Base class for ILIAS Exception handling.
static passThroughFilter(ilDataCollectionRecord $record, ilDataCollectionField $field, $filter)
const IL_CAL_DATETIME
getRecordFieldExportValue($field_id)
Get Field Export Value.
getRecordFieldSingleHTML($field_id, array $options=array())
getRecordFieldHTML($field_id, array $options=array())
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)
Default behaviour is:
Class ilDataCollectionRecord.
static getRecordFieldCache($record, $field)
setRecordFieldValue($field_id, $value)
Set Field Value.
if(!is_array($argv)) $options
Class ilObjFile.
static formatDate(ilDateTime $date)
Format a date public.
Date and time handling
Class ilObjMediaObject.
getRecordFieldValues()
getRecordFieldValues
getLastUpdate()
Get Last Update Date.
setCreateDate($a_datetime)
Set Creation Date.
static sendNotification($a_action, $a_table_id, $a_record_id=NULL)
__construct($a_id=0)
Constructor public.
static _exists($a_id, $a_reference=false)
setLastUpdate($a_datetime)
Set Last Update Date.
getRecordFieldValue($field_id)
Get Field Value.