tp_client_factory = $tp_client_factory; } /** @return bool */ public function allows_translation_feedback() { if ( ! $this->tp_client_factory ) { return true; } $translation_service = $this->tp_client_factory->create()->services()->get_active(); if ( isset( $translation_service->translation_feedback ) && ! $translation_service->translation_feedback ) { return false; } return true; } }