formatGroupClass() public static method

Get the valid attributes from the options.
public static formatGroupClass ( $new, $old ) : string
return string
示例#1
0
 /**
  * Make the item active
  *
  * @return Lavary\Menu\Item
  */
 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'] = Builder::formatGroupClass(array('class' => $this->builder->conf('active_class')), $this->attributes);
     return $this;
 }