Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
jetpack
/
json-endpoints
/
jetpack
/
Editing: class.jetpack-json-api-check-capabilities-endpoint.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } /** * Check capabilities endpoint class. * * GET /sites/%s/me/capability * * @phan-constructor-used-for-side-effects */ class Jetpack_JSON_API_Check_Capabilities_Endpoint extends Jetpack_JSON_API_Modules_Endpoint { /** * * API callback. * * @param string $path - the path. * @param int $_blog_id - the blog ID. * @param object $object - parameter is for making the method signature compatible with its parent class method. * @return bool|bool[]|WP_Error */ public function callback( $path = '', $_blog_id = 0, $object = null ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable // Check minimum capability and blog membership first $error = $this->validate_call( $_blog_id, 'read', false ); if ( is_wp_error( $error ) ) { return $error; } $args = $this->input(); if ( ! isset( $args['capability'] ) || empty( $args['capability'] ) ) { return new WP_Error( 'missing_capability', __( 'You are required to specify a capability to check.', 'jetpack' ), 400 ); } $capability = $args['capability']; if ( is_array( $capability ) ) { $results = array_map( 'current_user_can', $capability ); return array_combine( $capability, $results ); } else { return current_user_can( $capability ); } } }
Save
Cancel