WC_Marketplace_Suggestions
Marketplace suggestions core behaviour.
Description Description
Source Source
File: includes/admin/marketplace-suggestions/class-wc-marketplace-suggestions.php
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | class WC_Marketplace_Suggestions { /** * Initialise. */ public static function init() { if ( ! self::allow_suggestions() ) { return ; } // Add suggestions to the product tabs. add_action( 'woocommerce_product_data_tabs' , array ( __CLASS__ , 'product_data_tabs' ) ); add_action( 'woocommerce_product_data_panels' , array ( __CLASS__ , 'product_data_panels' ) ); // Register ajax api handlers. add_action( 'wp_ajax_woocommerce_add_dismissed_marketplace_suggestion' , array ( __CLASS__ , 'post_add_dismissed_suggestion_handler' ) ); // Register hooks for rendering suggestions container markup. add_action( 'wc_marketplace_suggestions_products_empty_state' , array ( __CLASS__ , 'render_products_list_empty_state' ) ); add_action( 'wc_marketplace_suggestions_orders_empty_state' , array ( __CLASS__ , 'render_orders_list_empty_state' ) ); } /** * Product data tabs filter * * Adds a new Extensions tab to the product data meta box. * * @param array $tabs Existing tabs. * * @return array */ public static function product_data_tabs( $tabs ) { $tabs [ 'marketplace-suggestions' ] = array ( 'label' => _x( 'Get more options' , 'Marketplace suggestions' , 'woocommerce' ), 'target' => 'marketplace_suggestions' , 'class' => array (), 'priority' => 1000, ); return $tabs ; } /** * Render additional panels in the proudct data metabox. */ public static function product_data_panels() { include dirname( __FILE__ ) . '/templates/html-product-data-extensions.php' ; } /** * Return an array of suggestions the user has dismissed. */ public static function get_dismissed_suggestions() { $dismissed_suggestions = array (); $dismissed_suggestions_data = get_user_meta( get_current_user_id(), 'wc_marketplace_suggestions_dismissed_suggestions' , true ); if ( $dismissed_suggestions_data ) { $dismissed_suggestions = $dismissed_suggestions_data ; if ( ! is_array ( $dismissed_suggestions ) ) { $dismissed_suggestions = array (); } } return $dismissed_suggestions ; } /** * POST handler for adding a dismissed suggestion. */ public static function post_add_dismissed_suggestion_handler() { if ( ! check_ajax_referer( 'add_dismissed_marketplace_suggestion' ) ) { wp_die(); } $post_data = wp_unslash( $_POST ); $suggestion_slug = sanitize_text_field( $post_data [ 'slug' ] ); if ( ! $suggestion_slug ) { wp_die(); } $dismissed_suggestions = self::get_dismissed_suggestions(); if ( in_array( $suggestion_slug , $dismissed_suggestions , true ) ) { wp_die(); } $dismissed_suggestions [] = $suggestion_slug ; update_user_meta( get_current_user_id(), 'wc_marketplace_suggestions_dismissed_suggestions' , $dismissed_suggestions ); wp_die(); } /** * Render suggestions containers in products list empty state. */ public static function render_products_list_empty_state() { self::render_suggestions_container( 'products-list-empty-header' ); self::render_suggestions_container( 'products-list-empty-body' ); self::render_suggestions_container( 'products-list-empty-footer' ); } /** * Render suggestions containers in orders list empty state. */ public static function render_orders_list_empty_state() { self::render_suggestions_container( 'orders-list-empty-header' ); self::render_suggestions_container( 'orders-list-empty-body' ); self::render_suggestions_container( 'orders-list-empty-footer' ); } /** * Render a suggestions container element, with the specified context. * * @param string $context Suggestion context name (rendered as a css class). */ public static function render_suggestions_container( $context ) { include dirname( __FILE__ ) . '/views/container.php' ; } /** * Should suggestions be displayed? * * @param string $screen_id The current admin screen. * * @return bool */ public static function show_suggestions_for_screen( $screen_id ) { // We only show suggestions on certain admin screens. if ( ! in_array( $screen_id , array ( 'edit-product' , 'edit-shop_order' , 'product' ), true ) ) { return false; } return self::allow_suggestions(); } /** * Should suggestions be displayed? * * @return bool */ public static function allow_suggestions() { // We currently only support English suggestions. $locale = get_locale(); $suggestion_locales = array ( 'en_AU' , 'en_CA' , 'en_GB' , 'en_NZ' , 'en_US' , 'en_ZA' , ); if ( ! in_array( $locale , $suggestion_locales , true ) ) { return false; } // Suggestions are only displayed if user can install plugins. if ( ! current_user_can( 'install_plugins' ) ) { return false; } // Suggestions may be disabled via a setting under Accounts & Privacy. if ( 'no' === get_option( 'woocommerce_show_marketplace_suggestions' , 'yes' ) ) { return false; } // User can disabled all suggestions via filter. return apply_filters( 'woocommerce_allow_marketplace_suggestions' , true ); } /** * Pull suggestion data from options. This is retrieved from a remote endpoint. * * @return array of json API data */ public static function get_suggestions_api_data() { $data = get_option( 'woocommerce_marketplace_suggestions' , array () ); // If the options have never been updated, or were updated over a week ago, queue update. if ( empty ( $data [ 'updated' ] ) || ( time() - WEEK_IN_SECONDS ) > $data [ 'updated' ] ) { $next = WC()->queue()->get_next( 'woocommerce_update_marketplace_suggestions' ); if ( ! $next ) { WC()->queue()->cancel_all( 'woocommerce_update_marketplace_suggestions' ); WC()->queue()->schedule_single( time(), 'woocommerce_update_marketplace_suggestions' ); } } return ! empty ( $data [ 'suggestions' ] ) ? $data [ 'suggestions' ] : array (); } } |
Methods Methods
- allow_suggestions — Should suggestions be displayed?
- get_dismissed_suggestions — Return an array of suggestions the user has dismissed.
- get_suggestions_api_data — Pull suggestion data from options. This is retrieved from a remote endpoint.
- init — Initialise.
- post_add_dismissed_suggestion_handler — POST handler for adding a dismissed suggestion.
- product_data_panels — Render additional panels in the proudct data metabox.
- product_data_tabs — Product data tabs filter
- render_orders_list_empty_state — Render suggestions containers in orders list empty state.
- render_products_list_empty_state — Render suggestions containers in products list empty state.
- render_suggestions_container — Render a suggestions container element, with the specified context.
- show_suggestions_for_screen — Should suggestions be displayed?