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

namespace WeDevs\DokanPro\Modules\RMA;

/**
* Admin class
*/
class Admin {

    /**
     * Load automatically when class initiate
     *
     * @since 1.0.0
     */
    public function __construct() {
        add_filter( 'dokan_settings_sections', array( $this, 'load_settings_section' ), 20 );
        add_filter( 'dokan_settings_fields', array( $this, 'load_settings_fields' ), 20 );
        add_action( 'dokan_after_saving_settings', [ $this, 'after_save_settings' ], 10, 2 );
    }

    /**
     * Load admin settings section
     *
     * @since 1.0.0
     *
     * @param array $section Existing array of settings section
     *
     * @return array
     */
    public function load_settings_section( array $section ): array {
        $section[] = [
            'id'                   => 'dokan_rma',
            'title'                => __( 'RMA', 'dokan' ),
            'icon_url'             => DOKAN_RMA_ASSETS_DIR . '/images/rma.svg',
            'description'          => __( 'Manage Return & Warranty', 'dokan' ),
            'document_link'        => 'https://dokan.co/docs/wordpress/modules/vendor-rma/',
            'settings_title'       => __( 'RMA Settings', 'dokan' ),
            'settings_description' => __( 'You can configure your site settings to allow vendors to offer customized return and warranty facility on their sold products.', 'dokan' ),
        ];

        return $section;
    }

    /**
     * Load all settings fields
     *
     * @since 1.0.0
     *
     * @param array $fields Existing array of settings fields
     *
     * @return array
     */
    public function load_settings_fields( array $fields ): array {
        $fields['dokan_rma'] = [
            'rma_order_status' => [
                'name'    => 'rma_order_status',
                'label'   => __( 'Order Status', 'dokan' ),
                'type'    => 'select',
                'desc'    => __( 'On what order status customer can avail the return or warranty facility.', 'dokan' ),
                'default' => 'seller',
                'options' => wc_get_order_statuses(),
                'tooltip' => __( 'On what order status customer can avail the Return or Warranty facility.', 'dokan' ),
            ],
            'rma_enable_refund_request' => [
                'name'    => 'rma_enable_refund_request',
                'label'   => __( 'Enable Refund Requests', 'dokan' ),
                'type'    => 'switcher',
                'desc'    => __( 'Allow customers to request for refunds', 'dokan' ),
                'default' => 'off',
            ],
            'rma_enable_coupon_request' => [
                'name'    => 'rma_enable_coupon_request',
                'label'   => __( 'Enable Coupon Requests', 'dokan' ),
                'type'    => 'switcher',
                'desc'    => __( 'Allow customers to request for coupons as store credit', 'dokan' ),
                'default' => 'off',
            ],

            'rma_reasons' => [
                'name'    => 'rma_reasons',
                'label'   => __( 'Reasons for RMA', 'dokan' ),
                'type'    => 'repeatable',
                'desc'    => __( 'You can add one or more custom reasons from here.', 'dokan' ),
                'tooltip' => __( 'You can add one or more custom reasons from here.', 'dokan' ),

            ],

            'rma_policy' => [
                'name'    => 'rma_policy',
                'label'   => __( 'Refund Policy', 'dokan' ),
                'type'    => 'wpeditor',
                'desc'    => __( 'Refund policy for all stores. Vendor can overwrite this policy.', 'dokan' ),
                'tooltip' => __( 'Refund policy for all stores. Vendor can overwrite this policy.', 'dokan' ),
            ],
        ];

        return $fields;
    }

    /**
     * After Save Admin Settings.
     *
     * @since 3.10.0
     *
     * @param string $option_name Option Key (Section Key).
     * @param array $option_value Option value.
     *
     * @return void
     */
    public function after_save_settings( string $option_name, array $option_value ) {
        if ( 'dokan_rma' !== $option_name ) {
            return;
        }

        foreach ( $option_value['rma_reasons'] as $key => $status ) {
            /**
             * Fires after saving RMA reasons
             *
             * @since 3.10.0
             *
             * @param string $status['value'] Reason value.
             */
            do_action( 'dokan_pro_register_rms_reason', $status['value'] );
        }
    }
}