ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilADTMultiTextPresentationBridge.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected function isValidADT(ilADT $a_adt): bool
24  {
25  return ($a_adt instanceof ilADTMultiText);
26  }
27 
28  public function getHTML(): string
29  {
30  if (!$this->getADT()->isNull()) {
31  $res = array();
32  foreach ($this->getADT()->getTextElements() as $item) {
33  if (trim($item)) {
34  $res[] = $this->decorate($item);
35  }
36  }
37  return implode(", ", $res);
38  }
39  return '';
40  }
41 
42  public function getSortable()
43  {
44  if (!$this->getADT()->isNull()) {
45  return implode(";", $this->getADT()->getTextElements());
46  }
47  return '';
48  }
49 }
$res
Definition: ltiservices.php:66
decorate($a_value)
Decorate value.
ADT base class.
Definition: class.ilADT.php:25
ADT presentation bridge base class.