ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilADTMultiEnumPresentationBridge.php
Go to the documentation of this file.
1 <?php
2 
3 require_once "Services/ADT/classes/Bridges/class.ilADTPresentationBridge.php";
4 
6 {
7  protected function isValidADT(ilADT $a_adt)
8  {
9  return ($a_adt instanceof ilADTMultiEnum);
10  }
11 
12  public function getHTML()
13  {
14  if(!$this->getADT()->isNull())
15  {
16  $res = array();
17 
18  $options = $this->getADT()->getCopyOfDefinition()->getOptions();
19  foreach($this->getADT()->getSelections() as $value)
20  {
21  if(array_key_exists($value, $options))
22  {
23  $res[] = $this->decorate($options[$value]);
24  }
25  }
26 
27  return implode(", ", $res);
28  }
29  }
30 
31  public function getSortable()
32  {
33  if(!$this->getADT()->isNull())
34  {
35  return implode(";", $this->getADT()->getSelections());
36  }
37  }
38 }
39 
40 ?>
decorate($a_value)
Decorate value.
ADT base class.
Definition: class.ilADT.php:11
if(!is_array($argv)) $options
ADT presentation bridge base class.