HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/tepnot/public_html/wp-content/plugins/dokan-pro/modules/wholesale/module.php
<?php

namespace WeDevs\DokanPro\Modules\Wholesale;

use WeDevs\DokanPro\Modules\Wholesale\BlockData;
use WeDevs\DokanPro\Modules\Wholesale\WholesaleCache;

defined( 'ABSPATH' ) || exit;

class Module {

    /**
     * Load automatically when class initiate
     *
     * @since 2.9.5
     */
    public function __construct() {
        $this->define();
        $this->includes();
        $this->initiate();
        $this->hooks();
    }

    /**
     * Hooks
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function define() {
        define( 'DOKAN_WHOLESALE_DIR', dirname( __FILE__ ) );
        define( 'DOKAN_WHOLESALE_INC_DIR', DOKAN_WHOLESALE_DIR . '/includes' );
        define( 'DOKAN_WHOLESALE_ASSETS_DIR', plugins_url( 'assets', __FILE__ ) );
    }

    /**
     * Get plugin path
     *
     * @since 2.9.5
     *
     * @return void
     **/
    public function plugin_path() {
        return untrailingslashit( plugin_dir_path( __FILE__ ) );
    }

    /**
     * Includes all necessary class a functions file
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function includes() {
        require_once DOKAN_WHOLESALE_INC_DIR . '/functions.php';

        if ( is_admin() ) {
            require_once DOKAN_WHOLESALE_INC_DIR . '/clas-admin.php';
        }

        // Load all helper functions
        require_once DOKAN_WHOLESALE_INC_DIR . '/class-customer.php';
        require_once DOKAN_WHOLESALE_INC_DIR . '/class-vendor.php';
        require_once DOKAN_WHOLESALE_INC_DIR . '/class-cart-checkout.php';
    }

    /**
     * Initiate all classes
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function initiate() {
        if ( is_admin() ) {
            new \Dokan_Wholesale_Admin();
        }

        new BlockData();
        new WholesaleCache();
        new \Dokan_Wholesale_Customer();
        new \Dokan_Wholesale_Vendor();
        new \Dokan_Wholesale_Cart_Checkout();
    }

    /**
     * Init all hooks
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function hooks() {
        add_filter( 'woocommerce_email_classes', array( $this, 'setup_emails' ) );
        add_filter( 'woocommerce_email_classes', array( $this, 'load_dokan_wholesale_register_emails' ) );
        add_filter( 'woocommerce_email_actions', array( $this, 'register_dokan_wholesale_register_actions' ) );

        add_action( 'wp_enqueue_scripts', [ $this, 'load_scripts' ] );
        add_filter( 'dokan_set_template_path', [ $this, 'load_wholesale_templates' ], 10, 3 );
        add_filter( 'dokan_rest_api_class_map', [ $this, 'rest_api_class_map' ] );
        add_filter( 'dokan_frontend_localize_script', [ $this, 'add_localize_data' ] );
        add_filter( 'dokan_email_list', array( $this, 'set_email_template_directory' ) );
        add_action( 'init', [ $this, 'register_scripts' ] );
    }

    /**
     * Register scripts to enqueue later
     *
     * @since 3.7.4
     */
    public function register_scripts() {
        list ( $suffix, $version ) = dokan_get_script_suffix_and_version();

        wp_register_script( 'dokan-wholesale-script', DOKAN_WHOLESALE_ASSETS_DIR . '/js/scripts' . $suffix . '.js', array( 'jquery', 'wp-api-fetch' ), $version, true );

        wp_localize_script(
            'dokan-wholesale-script',
            'DokanWholesale',
            [
                'currency_symbol'            => get_woocommerce_currency_symbol(),
                'check_permission'           => dokan_wholesale_can_see_price(),
                'variation_wholesale_string' => apply_filters(
                    'dokan_variable_product_wholesale_string',
                    [
                        'wholesale_price'  => __( 'Wholesale Price', 'dokan' ),
                        'minimum_quantity' => __( 'Minimum Quantity', 'dokan' ),
                    ]
                ),
            ]
        );
    }

    /**
     * Load scripts
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function load_scripts() {
        global $wp, $post;

        if ( is_account_page() ) {
            wp_enqueue_script( 'dokan-wholesale-script' );
        }

        if ( $post ) {
            $product = wc_get_product( $post->ID );
            $get     = wp_unslash( $_GET ); // phpcs:ignore CSRF ok.

            if ( dokan_is_seller_dashboard() && isset( $get['product_id'] ) ) {
                $post_id = intval( $get['product_id'] );
                $product = wc_get_product( $post_id ) || new \WC_Product();
            }

            if ( $product && ! dokan_is_store_listing() && ! dokan_is_store_page() ) {
                wp_enqueue_script( 'dokan-wholesale-script' );
            }
        }
    }

    /**
     * Set template path for Wholesale
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function load_wholesale_templates( $template_path, $template, $args ) {
        if ( isset( $args['is_wholesale'] ) && $args['is_wholesale'] ) {
            return $this->plugin_path() . '/templates';
        }

        return $template_path;
    }

    /**
     * REST API classes Mapping
     *
     * @since 2.9.5
     *
     * @return void
     */
    public function rest_api_class_map( $class_map ) {
        $class_map[ DOKAN_WHOLESALE_INC_DIR . '/api/class-wholesale-controller.php' ] = 'Dokan_REST_Wholesale_Controller';

        return $class_map;
    }

    /**
     * Set some localize data for wholesales
     *
     * @since 1.0.0
     *
     * @return void
     */
    public function add_localize_data( $data ) {
        $data['wholesale'] = [
            'activeStatusMessage'   => __( 'You are succefully converted as a wholesale customer', 'dokan' ),
            'deactiveStatusMessage' => __( 'Your wholesale customer request send to the admin. Please wait for approval', 'dokan' ),
        ];

        return $data;
    }

    public function setup_emails( $emails ) {
        if ( isset( $emails['Dokan_Email_Wholesale_Register'] ) ) {
            $email = $emails['Dokan_Email_Wholesale_Register'];

            $email->title       = __( 'Dokan New Wholesale Register', 'dokan' );
            $email->description = __( 'New emails are sent to the admin when a new wholesale registration occured.', 'dokan' );

            $email->template_base = $this->plugin_path() . '/templates';
            $email->recipient     = get_option( 'admin_email' );
        }

        return $emails;
    }

    public function load_dokan_wholesale_register_emails( $wc_emails ) {
        $wc_emails['Dokan_Email_Wholesale_Register'] = include DOKAN_WHOLESALE_INC_DIR . '/emails/class-dokan-wholesale-email-registration.php';

        return $wc_emails;
    }

    public function register_dokan_wholesale_register_actions( $actions ) {
        $actions[] = 'dokan_wholesale_customer_register';

        return $actions;
    }

    /**
     * Set Proper template directory.
     *
     * @param array $template_array
     *
     * @return array
     */
    public function set_email_template_directory( $template_array ) {
        array_push( $template_array, 'customer-wholesale-register.php' );
        return $template_array;
    }
}