Exemplo n.º 1
0
 /**
  * @copydoc DataSet::createDataDescription
  */
 public function createDataDescription()
 {
     $result = parent::createDataDescription();
     $fieldDescr = $result->getFieldDescriptionByName('align');
     $fieldDescr->loadAvailableValues(array(array('id' => 'bottom', 'value' => $this->translate('TXT_ALIGN_BOTTOM')), array('id' => 'middle', 'value' => $this->translate('TXT_ALIGN_MIDDLE')), array('id' => 'top', 'value' => $this->translate('TXT_ALIGN_TOP')), array('id' => 'left', 'value' => $this->translate('TXT_ALIGN_LEFT')), array('id' => 'right', 'value' => $this->translate('TXT_ALIGN_RIGHT'))), 'id', 'value');
     return $result;
 }