You are here

function minifyhtml_module_implements_alter in Minify Source HTML 7

Implements hook_module_implements_alter().

File

./minifyhtml.module, line 155
Hook and helper functions for the Minify HTML module.

Code

function minifyhtml_module_implements_alter(&$implementations, $hook) {

  // Move this module's hook_exit() to the end of the call order.
  if ($hook == 'exit' && isset($implementations['minifyhtml'])) {
    $group = $implementations['minifyhtml'];
    unset($implementations['minifyhtml']);
    $implementations['minifyhtml'] = $group;
  }
}