You are here

function advagg_font_module_implements_alter in Advanced CSS/JS Aggregation 7.2

Implements hook_module_implements_alter().

File

advagg_font/advagg_font.module, line 50
Advanced aggregation font module.

Code

function advagg_font_module_implements_alter(&$implementations, $hook) {

  // Move advagg to the bottom.
  if ($hook === 'page_alter' && array_key_exists('advagg_font', $implementations)) {
    $item = $implementations['advagg_font'];
    unset($implementations['advagg_font']);
    $implementations['advagg_font'] = $item;
  }
}