You are here

README.txt in Unique field 8.2

Same filename and directory in other branches
  1. 8 README.txt
  2. 5 README.txt
  3. 6 README.txt
  4. 7 README.txt
/**
 * Unique Field module for Drupal (unique_field)
 * Compatible with Drupal 8.x
 *
 * By Immanuel Paul, Logesh waran(https://www.drupal.org/u/logesh-waran) and
   Sidheeswar(https://www.drupal.org/u/sidhees)
 */

CONTENTS OF THIS FILE
---------------------
   
 * Introduction
 * Installation
 * Configuration
 * Maintainers

INTRODUCTION
------------

The Unique Field module provides a way to require that specified fields or
characteristics of a node/taxonomy term/user are unique. This includes the
title, language, taxonomy terms, and other fields.

Without this module, Drupal and CCK do not prevent multiple nodes from
having the same title or the same value in a given field.

For example, if you have a content type with a Title field and there
should only be one node per Title, you could use this module to prevent a
node from being saved with a Title already used in another node. As an
imporvement we have implemented unique field for user and taxonomy fields.

INSTALLATION
------------

Install as you would normally install a contributed Drupal module.
For help regarding installation, visit:
https://www.drupal.org/documentation/install/modules-themes/modules-8

CONFIGURATION
-------------

-conent type 

This module adds additional options to the administration page for each
content type (i.e. admin/structure/types/manage/<content type>) for
specifying which fields must be unique. The administrator may specify
whether each field must be unique or whether the fields in combination
must be unique.
Also, the administrator can choose whether the fields must be unique among all
other nodes or only among nodes from the given node's content type.

Alternatively, you can select the 'single node' scope, which allows you
to require that the specified fields are each unique on that node. For
example, if a node has multiple, separate user reference fields, this
setting will require that no user is selected more than once on one node.

-Taxonomy fields

This module adds additional options to the administration page for each
taxonomy vocabulary (i.e. admin/structure/taxonomy/manage/<taxonomy vocabulary>)
for specifying which fields must be unique.
As like content type the administrator may specify whether each field must
be unique or whether the fields in combination must be unique and
control other options of it, same as above.

-User Fields

This module adds additional options to the account settings
page (i.e. admin/config/people/accounts).
The administrator can control the unique field settings for
user account fields (i.e. fields added in admin/config/people/accounts/fields).

MAINTAINERS
------------

Current Maintainers for Drupal 8 version:
*Immanuel Paul (immanuel.paul) - https://www.drupal.org/u/immanuelpaul
*Logesh (Logesh waran) - https://www.drupal.org/u/logesh-waran
*Sidheeswar Sekaran (sidhees) - https://www.drupal.org/u/sidhees

File

README.txt
View source
  1. /**
  2. * Unique Field module for Drupal (unique_field)
  3. * Compatible with Drupal 8.x
  4. *
  5. * By Immanuel Paul, Logesh waran(https://www.drupal.org/u/logesh-waran) and
  6. Sidheeswar(https://www.drupal.org/u/sidhees)
  7. */
  8. CONTENTS OF THIS FILE
  9. ---------------------
  10. * Introduction
  11. * Installation
  12. * Configuration
  13. * Maintainers
  14. INTRODUCTION
  15. ------------
  16. The Unique Field module provides a way to require that specified fields or
  17. characteristics of a node/taxonomy term/user are unique. This includes the
  18. title, language, taxonomy terms, and other fields.
  19. Without this module, Drupal and CCK do not prevent multiple nodes from
  20. having the same title or the same value in a given field.
  21. For example, if you have a content type with a Title field and there
  22. should only be one node per Title, you could use this module to prevent a
  23. node from being saved with a Title already used in another node. As an
  24. imporvement we have implemented unique field for user and taxonomy fields.
  25. INSTALLATION
  26. ------------
  27. Install as you would normally install a contributed Drupal module.
  28. For help regarding installation, visit:
  29. https://www.drupal.org/documentation/install/modules-themes/modules-8
  30. CONFIGURATION
  31. -------------
  32. -conent type
  33. This module adds additional options to the administration page for each
  34. content type (i.e. admin/structure/types/manage/) for
  35. specifying which fields must be unique. The administrator may specify
  36. whether each field must be unique or whether the fields in combination
  37. must be unique.
  38. Also, the administrator can choose whether the fields must be unique among all
  39. other nodes or only among nodes from the given node's content type.
  40. Alternatively, you can select the 'single node' scope, which allows you
  41. to require that the specified fields are each unique on that node. For
  42. example, if a node has multiple, separate user reference fields, this
  43. setting will require that no user is selected more than once on one node.
  44. -Taxonomy fields
  45. This module adds additional options to the administration page for each
  46. taxonomy vocabulary (i.e. admin/structure/taxonomy/manage/)
  47. for specifying which fields must be unique.
  48. As like content type the administrator may specify whether each field must
  49. be unique or whether the fields in combination must be unique and
  50. control other options of it, same as above.
  51. -User Fields
  52. This module adds additional options to the account settings
  53. page (i.e. admin/config/people/accounts).
  54. The administrator can control the unique field settings for
  55. user account fields (i.e. fields added in admin/config/people/accounts/fields).
  56. MAINTAINERS
  57. ------------
  58. Current Maintainers for Drupal 8 version:
  59. *Immanuel Paul (immanuel.paul) - https://www.drupal.org/u/immanuelpaul
  60. *Logesh (Logesh waran) - https://www.drupal.org/u/logesh-waran
  61. *Sidheeswar Sekaran (sidhees) - https://www.drupal.org/u/sidhees