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

21 lines
603 B
PHP

<?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,
);
}
}