Beispiel #1
0
 /**
  * Get event cell base information
  *
  * @return array
  */
 public function getEventCell()
 {
     $cell = parent::getEventCell();
     $cell['options'] = array();
     foreach ($this->getOptions() as $option) {
         $cell['options'][] = array('group_id' => $option->getGroupId(), 'option_id' => $option->getOptionId(), 'value' => $option->getValue());
     }
     return $cell;
 }
 /**
  * {@inheritDoc}
  */
 public function getEventCell()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEventCell', array());
     return parent::getEventCell();
 }