Files
carpseeds.pl/wp-content/plugins/jetpack.bck/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php
2024-07-15 11:28:08 +02:00

14 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;
}
}