示例#1
0
 /**
  * Determines if checkbox is checked
  *
  * @return boolean
  */
 protected function isChecked()
 {
     return parent::isChecked() || $this->callFormMethod('getShipAsBillFlag');
 }
示例#2
0
文件: Simple.php 项目: kingsj/core
 /**
  * Determines if checkbox is checked
  *
  * @return boolean
  */
 protected function isChecked()
 {
     return parent::isChecked() || 'Y' == $this->getValue() || '1' === $this->getValue();
 }