formatGroupClass() public static méthode

Format the groups class.
public static formatGroupClass ( $new, $old ) : mixed
Résultat mixed
Exemple #1
0
 public function active($pattern = null)
 {
     if (!is_null($pattern)) {
         $pattern = ltrim(preg_replace('/\\/\\*/', '(/.*)?', $pattern), '/');
         if (preg_match("@^{$pattern}\\z@", Request::path())) {
             $this->activate();
         }
         return $this;
     }
     $this->attributes['class'] = $this->builder->formatGroupClass(['class' => 'active'], $this->attributes);
     return $this;
 }