本文整理汇总了PHP中_color_html_alter函数的典型用法代码示例。如果您正苦于以下问题:PHP _color_html_alter函数的具体用法?PHP _color_html_alter怎么用?PHP _color_html_alter使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了_color_html_alter函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: custom_apim_theme_process_html
/**
* Override or insert variables into the html template.
*/
function custom_apim_theme_process_html(&$vars)
{
// Hook into the color module.
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例2: featurebuilder2014_process_html
/**
* Override or insert variables into the page template for HTML output.
*/
function featurebuilder2014_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例3: excelpointb_process_html
/**
* Override or insert variables into the html template.
*/
function excelpointb_process_html(&$vars)
{
// Hook into color.module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例4: fromstart2finish_process_html
/**
* Override or insert variables into the page template for HTML output.
*/
function fromstart2finish_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例5: at_commerce_process_html
/**
* Override or insert variables into the html template.
*/
function at_commerce_process_html(&$vars)
{
// Hook the color module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例6: bootstrap_business_process_html
/**
* Override or insert variables into the html template.
*/
function bootstrap_business_process_html(&$vars)
{
// Hook into color.module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例7: aluminstudents_process_html
/**
* Override or insert variables into the html template.
*/
function aluminstudents_process_html(&$vars)
{
// Hook into color.module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例8: hospiten_omega_process_html
/**
* Override or insert variables into the page template for HTML output.
*/
function hospiten_omega_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例9: sasta_mat_process_html
/**
* Override or insert variables into the html template.
*/
function sasta_mat_process_html(&$vars)
{
// Hook into color.module
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例10: sociale_platforme_process_html
/**
* Implements template_process_html().
*
* Override or insert variables into the page template for HTML output.
*/
function sociale_platforme_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例11: skeletontheme_process_html
/**
* Override or insert variables into the page template for HTML output.
*/
function skeletontheme_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例12: sky_process_html
/**
* Implements template_process_html().
*/
function sky_process_html(&$vars)
{
// Apply color module scheme.
if (module_exists('color')) {
_color_html_alter($vars);
}
}
示例13: typebased_process_html
/**
* Implements template_process_html().
*/
function typebased_process_html(&$variables)
{
// Hook into color module
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例14: bartik_process_html
/**
* Override or insert variables into the page template for HTML output.
*/
function bartik_process_html(&$variables)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($variables);
}
}
示例15: academy_process_html
function academy_process_html(&$vars)
{
// Hook into color.module.
if (module_exists('color')) {
_color_html_alter($vars);
}
}