function Attribute::GetUid in Realistic Dummy Content 8
Gets the UID of the associated entity.
Return value
The UID.
1 call to Attribute::GetUid()
- Attribute::FileSave in api/
src/ attributes/ Attribute.php - Return a file object.
File
- api/
src/ attributes/ Attribute.php, line 102 - Define autoload class.
Class
- Attribute
- Represents either a field or a property for an entity.
Namespace
Drupal\realistic_dummy_content_api\attributesCode
function GetUid() {
return $this
->GetEntity()
->GetUid();
}