Closed (fixed)
Project:
Corporate Clean
Version:
7.x-1.2
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Issue tags:
Reporter:
Created:
14 Dec 2011 at 19:32 UTC
Updated:
4 Jan 2014 at 01:39 UTC
Jump to comment: Most recent
Configure template.php file for Color module integration.
/**
* Override or insert variables into the html template.
*/
function corporateclean_process_html(&$vars) {
// Hook into color.module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
/**
* Override or insert variables into the page template.
*/
function corporateclean_process_page(&$variables) {
// Hook into color.module.
if (module_exists('color')) {
_color_page_alter($variables);
}
}
Comments
Comment #1
gtsopour commentedConfigured and committed.
/George