Same name and namespace in other branches
  1. 7.x-2.x advagg.module \advagg_element_info_alter() 1 commentaire

Implements hook_element_info_alter().

Paramètres

$type:

Fichier

./advagg.module, line 233

Code

function advagg_element_info_alter(&$type) {
    // Swap in our own aggregation callback.
    if (isset($type['styles']['#aggregate_callback'])) {
        $type['styles']['#aggregate_callback'] = '_advagg_aggregate_css';
        //     $type['styles']['#group_callback'] = '_advagg_group_css';
    }
}