Entity Universally Unique IDentifier
Component ID
1531710
Component name
Entity Universally Unique IDentifier
Component type
module
Maintenance status
Development status
Component security advisory coverage
covered
Downloads
3789
Component created
Component changed
Component body
Module UUID, which provides an API for adding UUID to Drupal objects. But, current UUID support only for core entity in drupal (node, file, taxonomy, user, comment) and field_collection_item. With module entity_uuid you can assign uuid for another entities not only for Drupal core entities that are defined via hook_entity_info.
Feature:
- Provide an UI, which alow admin config to active for another entity in system using uuid.
- In this module, we add a new properties for hook_entity_info.
We need alter or add some key bellow to your code:
// entity info
$info['your_entity'] = array(
'uuid' => TRUE,
'entity keys' => array(
'uuid' => 'uuid',
),
);
Or we can config at admin/config/system/entity-uuid
Requirements
- Module UUID in Drupal 7
Installation
Simply download and enable the module!
