WP_REST_Plugins_Controller::validate_plugin_param( string $file )
Checks that the “plugin” parameter is a valid path.
Parameters
- $file
-
(Required) The plugin file parameter.
Return
(bool)
Source
File: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php
public function validate_plugin_param( $file ) {
if ( ! is_string( $file ) || ! preg_match( '/' . self::PATTERN . '/u', $file ) ) {
return false;
}
$validated = validate_file( plugin_basename( $file ) );
return 0 === $validated;
}
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |