function Attribute::GetName in Realistic Dummy Content 8
Getter for $this->name
Return value
The name of the field, for example body or picture or field_image
2 calls to Attribute::GetName()
- Attribute::GetCandidateFiles in api/
src/ attributes/ Attribute.php - Get all candidate files for a given field for this entity.
- TermReferenceField::GetTid in api/
src/ attributes/ TaxonomyTermReferenceField.php - Returns the term id for a term which is either existing or created on the fly.
File
- api/
src/ attributes/ Attribute.php, line 55 - Define autoload class.
Class
- Attribute
- Represents either a field or a property for an entity.
Namespace
Drupal\realistic_dummy_content_api\attributesCode
function GetName() {
return $this->name;
}