WP_REST_Plugins_Controller::validate_plugin_param( string $file ): bool

In this article

Checks that the “plugin” parameter is a valid path.

Parameters

$filestringrequired
The plugin file parameter.

Return

bool

Source

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

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.