当前位置: 首页>>代码示例>>PHP>>正文


PHP _color_html_alter函数代码示例

本文整理汇总了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);
    }
}
开发者ID:jwitt-hhg,项目名称:custom_apim_theme,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:JugglerX,项目名称:zurbfeaturebuilder,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:TommyTran1,项目名称:excelpoint,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:akapivo,项目名称:www.start2finish.be,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:creazy412,项目名称:vmware-win10-c65-drupal7,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:alezyy,项目名称:roommates,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:keshavwork,项目名称:iiu,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:nivaria,项目名称:hospiten_omega,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:Koreychenko,项目名称:sasta_mat,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:rimi-itk,项目名称:sociale_platforme,代码行数:12,代码来源:template.php

示例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);
    }
}
开发者ID:anxingirl,项目名称:con,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:e-gob,项目名称:GuiaDigital,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:eaton,项目名称:predicode,代码行数:10,代码来源:template.php

示例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);
    }
}
开发者ID:napoleon789,项目名称:ldulich,代码行数:10,代码来源:template.php

示例15: academy_process_html

function academy_process_html(&$vars)
{
    // Hook into color.module.
    if (module_exists('color')) {
        _color_html_alter($vars);
    }
}
开发者ID:EWB,项目名称:grh,代码行数:7,代码来源:template.php


注:本文中的_color_html_alter函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。