ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilDclSelectionRecordRepresentation.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
10 {
11 
12  // those should be overwritten by subclasses
13  const PROP_SELECTION_TYPE = '';
15 
16 
22  public function getHTML($link = true)
23  {
24  $record_field_value = $this->getRecordField()->getValue();
25  $values = ilDclSelectionOption::getValues($this->getField()->getId(), $record_field_value);
26 
27  return is_array($values) ? implode('<br>', $values) : $values;
28  }
29 }
static getValues($field_id, $opt_ids)
Class ilDclSelectionRecordRepresentation.
$values
Class ilDclBaseRecordRepresentation.