summaryrefslogtreecommitdiff
blob: 526cf4d71c2815986aae493dd5f788c32be6129f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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;
	}

}