Esempio n. 1
0
 /**
  * @see html::button()
  */
 public static function button($options = [])
 {
     $type = $options['type'] ?? 'default';
     $options['class'] = array_add_token($options['class'] ?? [], 'btn btn-' . $type, ' ');
     return parent::button($options);
 }