summaryrefslogtreecommitdiff
blob: 65b6e725e21204cdff4904e2e5a6db7301b71d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

// Translations
class Jetpack_JSON_API_Translations_Endpoint extends Jetpack_JSON_API_Endpoint {
	// GET /sites/%s/translations
	// POST /sites/%s/translations
	// POST /sites/%s/translations/update
	protected $needed_capabilities = array( 'update_core', 'update_plugins', 'update_themes' );
	protected $log;
	protected $success;

	public function result() {
		return array(
			'translations'  => wp_get_translation_updates(),
			'autoupdate'    => Jetpack_Options::get_option( 'autoupdate_translations', false ),
			'log'           => $this->log,
			'success'       => $this->success,
		);
	}
}