TYPO3 CMS  TYPO3_6-2
AdditionalElementView.php
Go to the documentation of this file.
1 <?php
3 
23 
29  protected $model;
30 
36  public function __construct($model) {
37  $this->model = $model;
38  }
39 
45  public function getAdditionalValue() {
46  return htmlspecialchars(
47  $this->model->getAdditionalValue(\TYPO3\CMS\Form\Utility\FormUtility::getInstance()->getLastPartOfClassName($this, TRUE)),
48  ENT_QUOTES
49  );
50  }
51 
52 }