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