<?php
/**
* Author: Nicolas Borda - http://nic.ipwa.net
* Display help and module information
* This module adds to your site the ie8 JavaScript library from Google Code
*
*/
function ie8_help($section = '') {
$output = '';
switch ($section) {
case "admin/help#ie8":
$output = '<p>'. t("Includes the ie8 JavaScript library to make IE 5 - 6 behave like a standards compliant broweser."). '</p>';
break;
}
return $output;
} // function ie8_help
/**
* Implementation of hook_menu
*/
function ie8_menu($may_cache) {
if (!$may_cache) {
$html = '<script type="text/javascript" src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE8.js"></script>';
drupal_set_html_head($html);
}
return $items;
}