id ) { case 'dashboard' : include( 'class-wc-admin-dashboard.php' ); break; case 'options-permalink' : include( 'class-wc-admin-permalink-settings.php' ); break; case 'users' : case 'user' : case 'profile' : case 'user-edit' : include( 'class-wc-admin-profile.php' ); break; } } /** * Handle redirects to setup/welcome page after install and updates. * * For setup wizard, transient must be present, the user must have access rights, and we must ignore the network/bulk plugin updaters. */ public function admin_redirects() { // Nonced plugin install redirects (whitelisted) if ( ! empty( $_GET['wc-install-plugin-redirect'] ) ) { $plugin_slug = wc_clean( $_GET['wc-install-plugin-redirect'] ); if ( current_user_can( 'install_plugins' ) && in_array( $plugin_slug, array( 'woocommerce-gateway-stripe' ) ) ) { $nonce = wp_create_nonce( 'install-plugin_' . $plugin_slug ); $url = self_admin_url( 'update.php?action=install-plugin&plugin=' . $plugin_slug . '&_wpnonce=' . $nonce ); } else { $url = admin_url( 'plugin-install.php?tab=search&type=term&s=' . $plugin_slug ); } wp_safe_redirect( $url ); exit; } // Setup wizard redirect if ( get_transient( '_wc_activation_redirect' ) ) { delete_transient( '_wc_activation_redirect' ); if ( ( ! empty( $_GET['page'] ) && in_array( $_GET['page'], array( 'wc-setup' ) ) ) || is_network_admin() || isset( $_GET['activate-multi'] ) || ! current_user_can( 'manage_woocommerce' ) || apply_filters( 'woocommerce_prevent_automatic_wizard_redirect', false ) ) { return; } // If the user needs to install, send them to the setup wizard if ( WC_Admin_Notices::has_notice( 'install' ) ) { wp_safe_redirect( admin_url( 'index.php?page=wc-setup' ) ); exit; } } } /** * Prevent any user who cannot 'edit_posts' (subscribers, customers etc) from accessing admin. */ public function prevent_admin_access() { $prevent_access = false; if ( 'yes' === get_option( 'woocommerce_lock_down_admin', 'yes' ) && ! is_ajax() && basename( $_SERVER["SCRIPT_FILENAME"] ) !== 'admin-post.php' ) { $has_cap = false; $access_caps = array( 'edit_posts', 'manage_woocommerce', 'view_admin_dashboard' ); foreach ( $access_caps as $access_cap ) { if ( current_user_can( $access_cap ) ) { $has_cap = true; break; } } if ( ! $has_cap ) { $prevent_access = true; } } if ( apply_filters( 'woocommerce_prevent_admin_access', $prevent_access ) ) { wp_safe_redirect( wc_get_page_permalink( 'myaccount' ) ); exit; } } /** * Preview email template. * * @return string */ public function preview_emails() { if ( isset( $_GET['preview_woocommerce_mail'] ) ) { if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'preview-mail') ) { die( 'Security check' ); } // load the mailer class $mailer = WC()->mailer(); // get the preview email subject $email_heading = __( 'HTML Email Template', 'woocommerce' ); // get the preview email content ob_start(); include( 'views/html-email-template-preview.php' ); $message = ob_get_clean(); // create a new email $email = new WC_Email(); // wrap the content with the email template and then add styles $message = apply_filters( 'woocommerce_mail_content', $email->style_inline( $mailer->wrap_message( $email_heading, $message ) ) ); // print the preview email echo $message; exit; } } /** * Change the admin footer text on WooCommerce admin pages. * * @since 2.3 * @param string $footer_text * @return string */ public function admin_footer_text( $footer_text ) { if ( ! current_user_can( 'manage_woocommerce' ) || ! function_exists( 'wc_get_screen_ids' ) ) { return; } $current_screen = get_current_screen(); $wc_pages = wc_get_screen_ids(); // Set only wc pages $wc_pages = array_flip( $wc_pages ); if ( isset( $wc_pages['profile'] ) ) { unset( $wc_pages['profile'] ); } if ( isset( $wc_pages['user-edit'] ) ) { unset( $wc_pages['user-edit'] ); } $wc_pages = array_flip( $wc_pages ); // Check to make sure we're on a WooCommerce admin page if ( isset( $current_screen->id ) && apply_filters( 'woocommerce_display_admin_footer_text', in_array( $current_screen->id, $wc_pages ) ) ) { // Change the footer text if ( ! get_option( 'woocommerce_admin_footer_text_rated' ) ) { $footer_text = sprintf( __( 'If you like WooCommerce please leave us a %s★★★★★%s rating. A huge thanks in advance!', 'woocommerce' ), '', '' ); wc_enqueue_js( " jQuery( 'a.wc-rating-link' ).click( function() { jQuery.post( '" . WC()->ajax_url() . "', { action: 'woocommerce_rated' } ); jQuery( this ).parent().text( jQuery( this ).data( 'rated' ) ); }); " ); } else { $footer_text = __( 'Thank you for selling with WooCommerce.', 'woocommerce' ); } } return $footer_text; } } return new WC_Admin();