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); }