示例#1
0
 public static function button($field, $value = null, array $attributes = array())
 {
     if (isset($attributes['class'])) {
         $attributes['class'] = 'btn ' . $attributes['class'];
     } else {
         $attributes['class'] = 'btn';
     }
     return parent::button($field, $value, $attributes);
 }