Checks if the translator plugin of this translator exists.
bool Returns TRUE if it exists, FALSE otherwise.
Overrides TranslatorInterface::hasPlugin
public function hasPlugin() {
if (!empty($this->plugin) && \Drupal::service('plugin.manager.tmgmt.translator')
->hasDefinition($this->plugin)) {
return TRUE;
}
return FALSE;
}