コード例 #1
0
ファイル: RadioField.php プロジェクト: pgodel/PageRoller
 /**
  * {@inheritDoc}
  */
 public function render(array $attributes = array())
 {
     return parent::render(array_merge(array('type' => 'radio', 'name' => $this->getParent() ? $this->getParent()->getName() : $this->getName()), $attributes));
 }
コード例 #2
0
ファイル: CheckboxField.php プロジェクト: pgodel/PageRoller
 /**
  * {@inheritDoc}
  */
 public function render(array $attributes = array())
 {
     return parent::render(array_merge(array('type' => 'checkbox'), $attributes));
 }