public function Job::isTranslatable in Translation Management Tool 8
Returns the translation support status.
Return value
bool TRUE if the object has translation support enabled.
Overrides ContentEntityBase::isTranslatable
File
- src/
Entity/ Job.php, line 970
Class
- Job
- Entity class for the tmgmt_job entity.
Namespace
Drupal\tmgmt\EntityCode
public function isTranslatable() {
// Translation jobs themself can not be translated.
return FALSE;
}