This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php
2018-03-21 18:19:20 +00:00

13 lines
300 B
PHP

<?php
class Jetpack_JSON_API_Themes_List_Endpoint extends Jetpack_JSON_API_Themes_Endpoint {
// GET /sites/%s/themes
protected $needed_capabilities = 'switch_themes';
public function validate_input( $theme ) {
$this->themes = wp_get_themes( array( 'allowed' => true ) );
return true;
}
}