コード例 #1
0
ファイル: TextField.php プロジェクト: skoop/symfony-sandbox
 /**
  * {@inheritDoc}
  */
 public function render(array $attributes = array())
 {
     return parent::render(array_merge(array('type' => 'text', 'maxlength' => $this->getOption('max_length')), $attributes));
 }
コード例 #2
0
ファイル: FileField.php プロジェクト: skoop/symfony-sandbox
 /**
  * {@inheritDoc}
  */
 public function render(array $attributes = array())
 {
     return parent::render(array_merge(array('type' => 'file'), $attributes));
 }