function metatag_preprocess_html in Metatag 7
Same name and namespace in other branches
- 8 metatag.module \metatag_preprocess_html()
Implements hook_preprocess_html().
File
- ./
metatag.module, line 2301 - Primary hook implementations for Metatag.
Code
function metatag_preprocess_html(&$variables) {
foreach (metatag_get_preprocess_variables('html') as $variable => $value) {
$variables[$variable] = $value;
}
}