README.txt 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. INTRODUCTION
  2. ------------
  3. This module provides an API for adding universally unique identifiers (UUID) to
  4. Drupal objects, most notably entities.
  5. FEATURES
  6. --------
  7. * Automatic UUID generation:
  8. UUIDs will be generated for all core entities. An API is provided for other
  9. modules to enable support for custom entities.
  10. See https://www.drupal.org/node/2387671
  11. * UUID API for entities, properties and fields:
  12. With this unified API you can load entities with entity_uuid_load() so that
  13. all supported properties and fields are made with UUID references. You can
  14. also save entities formatted this way with entity_uuid_save() (depends on
  15. Entity API).
  16. * Export entities to use as default/demo content:
  17. The integration with Features module provides the ability to export UUID
  18. enabled entities with intact dependencies and references to other entities.
  19. This functionality depends on Deploy module 7.x-2.0-alpha1 (soon to be
  20. released) and is probably the most robust way for installation profiles and
  21. distributions to provide demo content!
  22. * Services integration:
  23. The integration with Services module alters all UUID enabled entity resources
  24. (nodes, users, taxonomies etc) to be based on UUIDs instead. This way it
  25. becomes easier to share and integrate content between sites. This
  26. functionality is used by Deploy module.
  27. * More integrations:
  28. UUID module integrates with Views, Token, Rules and provides some CTools
  29. plugins.