public ContentLanguageSettings::id()
Gets the identifier.
Return value
string|int|null The entity identifier, or NULL if the object does not yet have an identifier.
Overrides Entity::id
File
- core/modules/language/src/Entity/ContentLanguageSettings.php, line 91
Class
- ContentLanguageSettings
- Defines the ContentLanguageSettings entity.
Namespace
Drupal\language\Entity
Code
1 2 3 | public function id() { return $this ->target_entity_type_id . '.' . $this ->target_bundle; } |
Please login to continue.