Beispiel #1
0
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     unset($list['value']);
     return $list;
 }
Beispiel #2
0
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     $list['value'] = '1';
     return $list;
 }
Beispiel #3
0
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     $list['value'] = '1';
     if ($this->isDisabled()) {
         $list['disabled'] = 'disabled';
     }
     return $list;
 }