mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* [APP-1108][APP-1109][APP-1110] Add analytics backend logic * [APP-1108][APP-1109][APP-1110] Add analytics backend logic * Add nonce to the widget settings * Update routes and DB table * Fix comments * Fix comments * Fix comments * Fix comments * Fix comments * Fix comments
43 lines
930 B
PHP
43 lines
930 B
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Analytics\Classes;
|
|
|
|
use EA11y\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 'analytics/' . $this->get_path();
|
|
}
|
|
|
|
public function get_path(): string {
|
|
return $this->path;
|
|
}
|
|
|
|
public function get_name(): string {
|
|
return '';
|
|
}
|
|
|
|
public function post_permission_callback( \WP_REST_Request $request ): bool {
|
|
return ! $this->auth || $this->get_permission_callback( $request );
|
|
}
|
|
|
|
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' );
|
|
}
|
|
}
|