Файловый менеджер - Редактировать - /home/freeclou/optimyar/wp-content/plugins/jet-blocks/includes/rest-api/endpoints/base.php
Назад
<?php namespace Jet_Blocks\Endpoints; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } /** * Define Endpoint_Base class */ abstract class Base { /** * Returns route name * * @return string */ abstract function get_name(); /** * API callback * @return void */ abstract function callback( $request ); /** * Returns endpoint request method - GET/POST/PUT/DELTE * * @return string */ public function get_method() { return 'GET'; } /** * Get query param. Regex with query parameters * * Example: * * (?P<id>[\d]+)/(?P<meta_key>[\w-]+) * * @return string */ public function get_query_params() { return ''; } /** * Returns arguments config * * Example: * * array( * array( * 'type' => array( * 'default' => '', * 'required' => false, * ), * ) * * @return array */ public function get_args() { return array(); } /** * Check user access to current end-popint * * @return string|bool */ public function permission_callback($request) { return current_user_can( 'manage_options' ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка