Website : phonehp.ir
backdoor
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Home
Console
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nehpir
/
public_html
/
wp-content
/
plugins
/
woocommersa
/
includes
/
API
/
Filename :
BaseController.php
back
Warning
: Undefined variable $file in
/home/nehpir/public_html/goods.php
on line
545
Copy
<?php namespace WooCommersa\API; if (!defined('ABSPATH')) exit; abstract class BaseController { protected $namespace = 'woocommersa/v1'; public function permissions_check($request) { if (current_user_can('manage_woocommerce')) { return true; } // Check if user is a Dokan vendor if (function_exists('dokan_is_user_seller') && dokan_is_user_seller(get_current_user_id())) { $route = $request->get_route(); // Allow access ONLY to product read and bulk updates $allowed_routes = [ '/woocommersa/v1/products', '/woocommersa/v1/categories', '/woocommersa/v1/products/bulk-update', '/woocommersa/v1/products/batch-save', '/woocommersa/v1/products/variations', '/woocommersa/v1/products/update', '/woocommersa/v1/orders', '/woocommersa/v1/pos/customers', '/woocommersa/v1/pos/customers/create', '/woocommersa/v1/pos/orders/create', '/woocommersa/v1/pos/orders/today', '/woocommersa/v1/pos/orders/details', '/woocommersa/v1/pos/orders/export' ]; foreach ($allowed_routes as $allowed) { if (strpos($route, $allowed) === 0) { return true; } } } return new \WP_Error('rest_forbidden', __('شما اجازه دسترسی به این بخش را ندارید.', 'woocommersa'), ['status' => 403]); } }