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/shipstation/module.php
<?php

namespace WeDevs\DokanPro\Modules\ShipStation;

class Module {

    /**
     * Module version
     *
     * @var string
     *
     * @since 1.0.0
     */
    public $version = '1.0.0';

    /**
     * Class constructor
     *
     * @since 1.0.0
     *
     * @return void
     */
    public function __construct() {
        $this->define_constants();
        $this->includes();
        $this->instances();
        $this->init_hooks();
    }

    /**
     * Module constants
     *
     * @since 1.0.0
     *
     * @return void
     */
    private function define_constants() {
        define( 'DOKAN_SHIPSTATION_VERSION' , $this->version );
        define( 'DOKAN_SHIPSTATION_PATH' , dirname( __FILE__ ) );
        define( 'DOKAN_SHIPSTATION_INCLUDES' , DOKAN_SHIPSTATION_PATH . '/includes' );
        define( 'DOKAN_SHIPSTATION_URL' , plugins_url( '', __FILE__ ) );
        define( 'DOKAN_SHIPSTATION_ASSETS' , DOKAN_SHIPSTATION_URL . '/assets' );
        define( 'DOKAN_SHIPSTATION_VIEWS', DOKAN_SHIPSTATION_PATH . '/views' );
        define( 'DOKAN_SHIPSTATION_EXPORT_LIMIT', 100 );
    }

    /**
     * Include module related PHP files
     *
     * @since 1.0.0
     *
     * @return void
     */
    private function includes() {
        require_once DOKAN_SHIPSTATION_INCLUDES . '/functions.php';
        require_once DOKAN_SHIPSTATION_INCLUDES . '/class-dokan-shipstation-hooks.php';
        require_once DOKAN_SHIPSTATION_INCLUDES . '/class-dokan-shipstation-settings.php';
        require_once DOKAN_SHIPSTATION_INCLUDES . '/ConflictResolution.php';
    }

    /**
     * Create module related class instances
     *
     * @since 1.0.0
     *
     * @return void
     */
    private function instances() {
        new \Dokan_ShipStation_Hooks();
        new \Dokan_ShipStation_Settings();
        new \ConflictResolution();
    }

    /**
     * Call all hooks here.
     *
     * @since 3.14.4
     *
     * @return void
     */
    public function init_hooks() {
        // Include rest api class.
        add_filter( 'dokan_rest_api_class_map', [ $this, 'rest_api_class_map' ] );
    }

    /**
     * Rest api class map
     *
     * @param array $classes
     *
     * @since 3.14.4
     *
     * @return array
     */
    public function rest_api_class_map( $classes ) {
        $classes[ DOKAN_SHIPSTATION_INCLUDES . '/REST/VendorCredentialsApi.php' ] = '\WeDevs\DokanPro\Modules\ShipStation\REST\VendorCredentialsApi';
        $classes[ DOKAN_SHIPSTATION_INCLUDES . '/REST/VendorOrderStatusApi.php' ] = '\WeDevs\DokanPro\Modules\ShipStation\REST\VendorOrderStatusApi';

        return $classes;
    }
}