function system_module_test_html_head_alter

Implements hook_html_head_alter().

File

drupal/core/modules/system/tests/modules/system_module_test/system_module_test.module, line 11
Provides System module hook implementations for testing purposes.

Code

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']);
}