コード例 #1
0
ファイル: _ide_helper.php プロジェクト: qarlson/infr
 /**
  * Create a HTML reset input element.
  *
  * @param string $value
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function reset($value, $attributes = array())
 {
     //Method inherited from \Illuminate\Html\FormBuilder
     return \Bootstrapper\Form::reset($value, $attributes);
 }
コード例 #2
0
 public function testResetButton()
 {
     $html = Form::reset('foo', $this->testAttributes);
     $matcher = $this->createButtonMatcher('reset');
     $this->assertTag($matcher, $html);
 }