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


PHP WC_Admin_Notices::init方法代码示例

本文整理汇总了PHP中WC_Admin_Notices::init方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Admin_Notices::init方法的具体用法?PHP WC_Admin_Notices::init怎么用?PHP WC_Admin_Notices::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WC_Admin_Notices的用法示例。


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

示例1: no_shipping_methods_notice

    public static function no_shipping_methods_notice()
    {
        if (wc_shipping_enabled() && (empty($_GET['page']) || empty($_GET['tab']) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'])) {
            global $wpdb;
            $product_count = wp_count_posts('product');
            $method_count = wc_get_shipping_method_count();
            if ($product_count->publish > 0 && 0 === $method_count) {
                include 'views/html-notice-no-shipping-methods.php';
            }
            if ($method_count > 0) {
                self::remove_notice('no_shipping_methods');
            }
        }
    }
    /**
     * Simplify Commerce is being removed from core.
     */
    public static function simplify_commerce_notice()
    {
        $location = wc_get_base_location();
        if (class_exists('WC_Gateway_Simplify_Commerce_Loader') || !in_array($location['country'], apply_filters('woocommerce_gateway_simplify_commerce_supported_countries', array('US', 'IE')))) {
            self::remove_notice('simplify_commerce');
            return;
        }
        if (empty($_GET['action'])) {
            include 'views/html-notice-simplify-commerce.php';
        }
    }
}
WC_Admin_Notices::init();
开发者ID:tlovett1,项目名称:woocommerce,代码行数:30,代码来源:class-wc-admin-notices.php


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