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


PHP wc_hex_darker函数代码示例

本文整理汇总了PHP中wc_hex_darker函数的典型用法代码示例。如果您正苦于以下问题:PHP wc_hex_darker函数的具体用法?PHP wc_hex_darker怎么用?PHP wc_hex_darker使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了wc_hex_darker函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get_option

 * @author  WooThemes
 * @package WooCommerce/Templates/Emails
 * @version 2.3.0
 */
if (!defined('ABSPATH')) {
    exit;
}
// Exit if accessed directly
// Load colours
$bg = get_option('woocommerce_email_background_color');
$body = get_option('woocommerce_email_body_background_color');
$base = get_option('woocommerce_email_base_color');
$base_text = wc_light_or_dark($base, '#202020', '#ffffff');
$text = get_option('woocommerce_email_text_color');
$bg_darker_10 = wc_hex_darker($bg, 10);
$body_darker_10 = wc_hex_darker($body, 10);
$base_lighter_20 = wc_hex_lighter($base, 20);
$base_lighter_40 = wc_hex_lighter($base, 40);
$text_lighter_20 = wc_hex_lighter($text, 20);
// !important; is a gmail hack to prevent styles being stripped if it doesn't like something.
?>
#wrapper {
    background-color: <?php 
echo esc_attr($bg);
?>
;
    margin: 0;
    padding: 70px 0 70px 0;
    -webkit-text-size-adjust: none !important;
    width: 100%;
}
开发者ID:coderkevin,项目名称:woocommerce,代码行数:31,代码来源:email-styles.php

示例2: get_option

 *
 * @author  WooThemes
 * @package WooCommerce/Templates/Emails
 * @version 2.3.0
 */
if (!defined('ABSPATH')) {
    exit;
}
// Exit if accessed directly
// Load colours
$bg = get_option('woocommerce_email_background_color');
$body = get_option('woocommerce_email_body_background_color');
$base = get_option('woocommerce_email_base_color');
$base_text = wc_light_or_dark($base, '#202020', '#ffffff');
$text = get_option('woocommerce_email_text_color');
$bg_darker_10 = wc_hex_darker($bg, 10);
$base_lighter_20 = wc_hex_lighter($base, 20);
$text_lighter_20 = wc_hex_lighter($text, 20);
// !important; is a gmail hack to prevent styles being stripped if it doesn't like something.
?>
#wrapper {
    background-color: <?php 
echo esc_attr($bg);
?>
;
    margin: 0;
    padding: 70px 0 70px 0;
    -webkit-text-size-adjust: none !important;
    width: 100%;
}
开发者ID:MMariscal,项目名称:Medefis,代码行数:30,代码来源:email-styles.php

示例3: test_wc_hex_darker

 /**
  * Test wc_hex_darker().
  *
  * @since 2.2
  */
 public function test_wc_hex_darker()
 {
     $this->assertEquals('#004178', wc_hex_darker('005dab'));
     $this->assertEquals('#004178', wc_hex_darker('#005dab'));
 }
开发者ID:jimlove7273,项目名称:woocommerce,代码行数:10,代码来源:functions.php

示例4: woocommerce_hex_darker

 /**
  * @deprecated
  */
 function woocommerce_hex_darker($color, $factor = 30)
 {
     return wc_hex_darker($color, $factor);
 }
开发者ID:nayemDevs,项目名称:woocommerce,代码行数:7,代码来源:wc-deprecated-functions.php

示例5: esc_attr

.wrapper { font-family: Arial, sans-serif; font-size: <?php 
echo $body_text_size;
?>
px; color: <?php 
echo $body_text_color;
?>
; background-color: <?php 
echo esc_attr($back_bg_color);
?>
; width:100%; -webkit-text-size-adjust:none !important; margin:0; padding: 50px 0 50px 0;}
.main-body { font-family: Arial, sans-serif; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.03); border-radius: <?php 
echo $email_border_radius;
?>
px !important; overflow: hidden; background-color: #ffffff; border: 1px solid <?php 
echo wc_hex_darker($back_bg_color, 10);
?>
; width: <?php 
echo $email_width;
?>
px;}

.template_header { font-family: Arial, sans-serif; background-color:<?php 
echo esc_attr($header_bg_color);
?>
; color: <?php 
echo $header_text_color;
?>
; border-top-left-radius:2px !important; border-top-right-radius:2px !important; border-bottom: 1px solid <?php 
echo $header_border_bottom_color;
?>
开发者ID:seoduda,项目名称:Patua,代码行数:30,代码来源:email-header-deluxe.php


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