public function RestfulDataProviderEFQ::getEntityInfo in RESTful 7
Get the entity info for the current entity the endpoint handling.
Parameters
null $type: The entity type. Optional.
Return value
array The entity info.
9 calls to RestfulDataProviderEFQ::getEntityInfo()
- RestfulDataProviderEFQ::getEntityFieldQuery in plugins/
restful/ RestfulDataProviderEFQ.php - Initialize an EntityFieldQuery (or extending class).
- RestfulEntityBase::createEntity in plugins/
restful/ RestfulEntityBase.php - Create a new entity.
- RestfulEntityBase::getBundlesForAutocomplete in plugins/
restful/ RestfulEntityBase.php - Return the bundles that should be used for the autocomplete search.
- RestfulEntityBase::getFormSchemaAllowedValues in plugins/
restful/ RestfulEntityBase.php - Get allowed values for the form schema.
- RestfulEntityBase::getListForAutocomplete in plugins/
restful/ RestfulEntityBase.php - Return the values of the types tags, with the ID.
1 method overrides RestfulDataProviderEFQ::getEntityInfo()
- RestfulEntityBaseUser::getEntityInfo in plugins/
restful/ RestfulEntityBaseUser.php - Overrides parent::getEntityInfo().
File
- plugins/
restful/ RestfulDataProviderEFQ.php, line 57 - Contains \RestfulDataProviderEFQ
Class
- RestfulDataProviderEFQ
- @file Contains \RestfulDataProviderEFQ
Code
public function getEntityInfo($type = NULL) {
return entity_get_info($type ? $type : $this
->getEntityType());
}