function om_system_preprocess_html in OM Tools 7.2
Same name and namespace in other branches
- 8.2 tools/system/system.inc \om_system_preprocess_html()
- 8 tools/system/system.inc \om_system_preprocess_html()
- 7 tools/system/system.inc \om_system_preprocess_html()
Override or insert om variables into the templates.
File
- tools/
system/ system.inc, line 45 - System Tools
Code
function om_system_preprocess_html(&$vars) {
$system_defaults = $vars['om_system_tools_values'];
if (isset($system_defaults['system_mediaqueries_switch']) && $system_defaults['system_mediaqueries_switch'] == 1) {
/**
* Mediaqueries
* http://plugins.jquery.com/project/MediaQueries
*
* - rename jquery.mediaqueries.js to mediaqueries.js
*
*/
//drupal_add_js(drupal_get_path('module', 'om_tools') . '/contrib/mediaqueries.js', 'file');
drupal_add_js(drupal_get_path('module', 'om_tools') . '/contrib/mediaqueries.js');
}
}