system_module_test.module

Provides System module hook implementations for testing purposes.

File

drupal/core/modules/system/tests/modules/system_module_test/system_module_test.module
View source
<?php

/**
 * @file
 * Provides System module hook implementations for testing purposes.
 */

/**
 * Implements hook_html_head_alter().
 */
function system_module_test_html_head_alter(&$head_elements) {

  // Remove the HTML5 mobile meta-tags.
  unset($head_elements['MobileOptimized']);
  unset($head_elements['HandheldFriendly']);
  unset($head_elements['viewport']);
  unset($head_elements['cleartype']);
}

Functions