コード例 #1
0
ファイル: Simple.php プロジェクト: kingsj/core
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     unset($list['value']);
     return $list;
 }
コード例 #2
0
ファイル: Switcher.php プロジェクト: kirkbauer2/kirkxc
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     $list['value'] = '1';
     return $list;
 }
コード例 #3
0
ファイル: OnOff.php プロジェクト: kirkbauer2/kirkxc
 /**
  * getCommonAttributes
  *
  * @return array
  */
 protected function getCommonAttributes()
 {
     $list = parent::getCommonAttributes();
     $list['value'] = '1';
     if ($this->isDisabled()) {
         $list['disabled'] = 'disabled';
     }
     return $list;
 }