Submit
Path:
~
/
home
/
getwphos
/
www
/
preferredexotics
/
wp-content
/
plugins
/
image-optimization
/
modules
/
reviews
/
classes
/
File Content:
route-base.php
<?php namespace ImageOptimization\Modules\Reviews\Classes; use ImageOptimization\Classes\Rest\Route; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Class Route_Base */ class Route_Base extends Route { protected bool $override = false; protected $auth = true; protected string $path = ''; public function get_methods(): array { return []; } public function get_endpoint(): string { return 'reviews/' . $this->get_path(); } public function get_path(): string { return $this->path; } public function get_name(): string { return 'reviews'; } public function get_permission_callback( \WP_REST_Request $request ): bool { $valid = $this->permission_callback( $request ); return $valid && user_can( $this->current_user_id, 'manage_options' ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
feedback-handler.php
753 bytes
0644
route-base.php
804 bytes
0644
N4ST4R_ID | Naxtarrr