Linux heracles.o2switch.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
/
home
/
ophq1335
/
www
/
wp-content
/
plugins
/
wp-seopress
/
src
/
Actions
/
Api
/
Options
/
/home/ophq1335/www/wp-content/plugins/wp-seopress/src/Actions/Api/Options/Roles.php
<?php // phpcs:ignore namespace SEOPress\Actions\Api\Options; if ( ! defined( 'ABSPATH' ) ) { exit; } use SEOPress\Core\Hooks\ExecuteHooks; /** * Roles */ class Roles implements ExecuteHooks { /** * Current user ID * * @var int */ private $current_user = ''; /** * The Roles hooks. * * @since 5.0.0 */ public function hooks() { $this->current_user = wp_get_current_user()->ID; add_action( 'rest_api_init', array( $this, 'register' ) ); } /** * The Roles permission check. * * @param \WP_REST_Request $request The request. * * @since 5.9 * * @return boolean */ public function permissionCheck( \WP_REST_Request $request ) { $current_user = $this->current_user ? $this->current_user : wp_get_current_user()->ID; if ( ! user_can( $current_user, 'manage_options' ) ) { return false; } return true; } /** * The Roles register. * * @since 5.9 * * @return void */ public function register() { register_rest_route( 'seopress/v1', '/roles', array( 'methods' => 'GET', 'callback' => array( $this, 'processGet' ), 'permission_callback' => array( $this, 'permissionCheck' ), ) ); } /** * The Roles process get. * * @param \WP_REST_Request $request The request. * * @since 5.9 */ public function processGet( \WP_REST_Request $request ) { global $wp_roles; if ( ! isset( $wp_roles ) ) { $wp_roles = new \WP_Roles(); // phpcs:ignore } if ( empty( $wp_roles ) ) { return; } $data = $wp_roles->get_names(); return new \WP_REST_Response( $data ); } }