PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-pro
/
includes
/
REST
<?php namespace WeDevs\DokanPro\REST; class Manager { /** * Register Dokan Pro REST Controllers * * @since 3.0.0 * * @param array $class_map * * @return array */ public static function register_rest_routes( $class_map ) { $class_map[ DOKAN_PRO_INC . '/REST/StoreCategoryController.php' ] = StoreCategoryController::class; $class_map[ DOKAN_PRO_INC . '/REST/CouponController.php' ] = CouponController::class; $class_map[ DOKAN_PRO_INC . '/REST/ReportsController.php' ] = ReportsController::class; $class_map[ DOKAN_PRO_INC . '/REST/ReviewsController.php' ] = ReviewsController::class; $class_map[ DOKAN_PRO_INC . '/REST/ProductVariationController.php' ] = ProductVariationController::class; $class_map[ DOKAN_PRO_INC . '/REST/StoreController.php' ] = StoreController::class; $class_map[ DOKAN_PRO_INC . '/REST/ModulesController.php' ] = ModulesController::class; $class_map[ DOKAN_PRO_INC . '/REST/AnnouncementController.php' ] = AnnouncementController::class; $class_map[ DOKAN_PRO_INC . '/REST/LogsController.php' ] = LogsController::class; $class_map[ DOKAN_PRO_INC . '/REST/RefundController.php' ] = RefundController::class; return $class_map; } }
[+]
..
[-] CouponController.php
[edit]
[-] StoreCategoryController.php
[edit]
[-] ReviewsController.php
[edit]
[-] AnnouncementController.php
[edit]
[-] LogsController.php
[edit]
[-] Manager.php
[edit]
[-] ReportsController.php
[edit]
[-] ProductVariationController.php
[edit]
[-] RefundController.php
[edit]
[-] ModulesController.php
[edit]
[-] StoreController.php
[edit]