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/includes/Hooks.php
<?php

namespace WeDevs\DokanPro;

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

/**
 * Hooks class
 *
 * @since 3.7.25
 */
class Hooks {
    /**
     * Class constructor
     *
     * @since 3.7.25
     */
    public function __construct() {
        add_filter( 'dokan_withdraw_disable', [ $this, 'withdraw_disable_withdraw_operation' ], 3 );
        add_filter( 'dokan_prepare_for_calculation', [ $this, 'add_combine_commission' ], 10, 6 );
        add_action( 'dokan_seller_wizard_payment_field_save', [ $this, 'update_progressbar_for_payment_gateway' ], 10 );
    }

    /**
     * Disable entire Dokan withdraw mechanism.
     *
     * @since 3.7.25 moved from includes/functions.php to here
     *
     * @param bool $is_disabled
     *
     * @return bool
     */
    public function withdraw_disable_withdraw_operation( $is_disabled ) {
        if ( $is_disabled ) {
            return $is_disabled;
        }

        return 'on' === dokan_get_option( 'hide_withdraw_option', 'dokan_withdraw', 'off' );
    }

    /**
     * Dokan add combine commission
     *
     * @deprecated 3.14.0
     *
     * @since  2.9.14
     * @since  3.7.25 moved from includes/functions.php to here
     *
     * @param float  $earning [earning for a vendor or admin]
     * @param float  $commission_rate
     * @param string $commission_type
     * @param float  $additional_fee
     * @param float  $product_price
     * @param int    $order_id
     *
     * @return float
     */
    public function add_combine_commission( $earning, $commission_rate, $commission_type, $additional_fee, $product_price, $order_id ) {
        _deprecated_function( __METHOD__, '3.14.0' );
        if ( 'combine' === $commission_type ) {
            // vendor will get 100 percent if commission rate > 100
            if ( $commission_rate > 100 ) {
                return (float) wc_format_decimal( $product_price );
            }

            // If `_dokan_item_total` returns `non-falsy` value that means, the request comes from the `order refund request`.
            // So modify `additional_fee` to the correct amount to get refunded. (additional_fee/item_total)*product_price.
            // Where `product_price` means item_total - refunded_total_for_item.
            $item_total    = get_post_meta( $order_id, '_dokan_item_total', true );
            $product_price = (float) wc_format_decimal( $product_price );
            if ( $order_id && $item_total ) {
                $order          = wc_get_order( $order_id );
                $additional_fee = ( $additional_fee / $item_total ) * $product_price;
            }

            $earning       = ( (float) $product_price * $commission_rate ) / 100;
            $total_earning = $earning + $additional_fee;
            $earning       = (float) $product_price - $total_earning;
        }

        return floatval( wc_format_decimal( $earning ) );
    }

    /**
     * Increase progressbar for skrill and custom payment method.
     *
     * @since 4.0.0
     *
     * @param $instance
     *
     * @return void
     */
    public function update_progressbar_for_payment_gateway( $instance ) {
        $dokan_settings = get_user_meta( $instance->store_id, 'dokan_profile_settings', true );

        // phpcs:ignore WordPress.Security.NonceVerification.Missing
        if ( ! empty( $_POST['settings']['skrill']['email'] ) ) {
            $dokan_settings['payment']['skrill'] = [
                'email' => sanitize_email( wp_unslash( $_POST['settings']['skrill']['email'] ) ), // phpcs:ignore WordPress.Security.NonceVerification.Missing
            ];

            $dokan_settings['profile_completion']['skrill'] = $dokan_settings['profile_completion']['progress_vals']['payment_method_val'];
            $dokan_settings['profile_completion']['paypal'] = 0;
            $dokan_settings['profile_completion']['bank'] = 0;
            $dokan_settings['profile_completion']['dokan_custom'] = 0;
        }

        // phpcs:ignore WordPress.Security.NonceVerification.Missing
        if ( ! empty( $_POST['settings']['dokan_custom']['value'] ) ) {
            $dokan_settings['payment']['dokan_custom'] = [
                'value' => sanitize_text_field( wp_unslash( $_POST['settings']['dokan_custom']['value'] ) ), // phpcs:ignore WordPress.Security.NonceVerification.Missing
            ];
            $dokan_settings['profile_completion']['skrill'] = 0;
            $dokan_settings['profile_completion']['paypal'] = 0;
            $dokan_settings['profile_completion']['bank'] = 0;
            $dokan_settings['profile_completion']['dokan_custom'] = $dokan_settings['profile_completion']['progress_vals']['payment_method_val'];
        }

        // Check any payment methods setups and add manually value on Profile Completion also increase progress value
        if ( isset( $dokan_settings['profile_completion']['skrill'] ) || isset( $dokan_settings['profile_completion']['dokan_custom'] ) ) {
            if ( ! empty( $dokan_settings['profile_completion']['progress'] ) ) {
                $dokan_settings['profile_completion']['progress'] = $dokan_settings['profile_completion']['progress'] + $dokan_settings['profile_completion']['progress_vals']['payment_method_val'];
            }
        }

        update_user_meta( $instance->store_id, 'dokan_profile_settings', $dokan_settings );
    }
}