PUM_Woocommerce_Integration::register_conditions( $conditions = array() )
Contents
Description Description
Source Source
File: includes/integrations/class-pum-woocommerce-integration.php
public static function register_conditions( $conditions = array() ) { // Add Additional Conditions $conditions['is_woocommerce'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'All WooCommerce', 'popup-maker' ), 'callback' => 'is_woocommerce', ); $conditions['is_shop'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'Shop Page', 'popup-maker' ), 'callback' => 'is_shop', ); $conditions['is_cart'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'Cart Page', 'popup-maker' ), 'callback' => 'is_cart', ); $conditions['is_checkout'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'Checkout Page', 'popup-maker' ), 'callback' => 'is_checkout', ); $conditions['is_account_page'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'Account Page', 'popup-maker' ), 'callback' => 'is_account_page', ); $conditions['is_wc_endpoint_url'] = array( 'group' => __( 'WooCommerce', 'woocommerce' ), 'name' => __( 'Is Endpoint', 'popup-maker' ), 'fields' => array( 'selected' => array( 'placeholder' => __( 'Selected Endpoints', 'popup-maker' ), 'type' => 'select', 'select2' => true, 'multiple' => true, 'as_array' => true, 'options' => array( 'order-pay' => 'order-pay', 'order-received' => 'order-received', // My account actions. 'orders' => 'orders', 'view-order' => 'view-order', 'downloads' => 'downloads', 'edit-account' => 'edit-account', 'edit-address' => 'edit-address', 'payment-methods' => 'payment-methods', 'lost-password' => 'lost-password', 'customer-logout' => 'customer-logout', 'add-payment-method' => 'add-payment-method', 'delete-payment-method' => 'delete-payment-method', 'set-default-payment-method' => 'set-default-payment-method', 'subscriptions' => 'subscriptions', ), ), ), 'callback' => array( __CLASS__, 'is_wc_endpoint_url' ), ); return $conditions; }
Expand full source code Collapse full source code View on Trac