コード例 #1
0
ファイル: ToggleField.php プロジェクト: netixpro/symfony
 /**
  * {@inheritDoc}
  */
 public function getAttributes()
 {
     return array_merge(parent::getAttributes(), array('value' => $this->getOption('value'), 'checked' => (string) $this->getDisplayedData() !== '' && $this->getDisplayedData() !== 0));
 }
コード例 #2
0
ファイル: NumberField.php プロジェクト: netixpro/symfony
 /**
  * {@inheritDoc}
  */
 public function getAttributes(array $attributes = array())
 {
     return array_merge(parent::getAttributes(), array('type' => 'text'));
 }