Ejemplo n.º 1
0
 function html_attr_remove_class($attributes, $class)
 {
     $attr = new HTML_Attributes($attributes);
     return (string) $attr->removeClass($class);
 }
Ejemplo n.º 2
0
 function html_attr_remove_class($attributes, $class)
 {
     $attr = new HTML_Attributes($attributes);
     return (string) $attr->removeClass($class);
     if (trim($attr->getAttribute('class')) == '') {
         $attr->removeAttribute('class');
     }
     return (string) $attr;
 }