Files
doitinpoland.com/wp-content/plugins/wpml-translation-management/classes/translation-proxy/api/class-wpml-tp-services.php
2023-09-12 21:41:04 +02:00

22 lines
491 B
PHP

<?php
class WPML_TP_Services {
public function get_current_project() {
return TranslationProxy::get_current_project();
}
public function get_current_service() {
return TranslationProxy::get_current_service();
}
/**
* @param $service_id
* @param bool $custom_fields
*
* @throws WPMLTranslationProxyApiException
*/
public function select_service( $service_id, $custom_fields = false ) {
TranslationProxy::select_service( $service_id, $custom_fields );
}
}