non security modules update

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-20 16:32:07 +02:00
parent 6a8d30db08
commit 37fbabab56
466 changed files with 32690 additions and 9652 deletions

View File

@@ -7,11 +7,11 @@ Maintainers:
Project homepage: http://drupal.org/project/friendly_register
Friendly Register module allows users to see if a username or email address has
already been used during registration before they submit the form. This module
checks the database and returns an error if the username is already in use. In
addition to checking the username the module checks if there is already an
account using that email address, if there is, a message is displayed with
Friendly Register module allows users to see if a username or email address has
already been used during registration before they submit the form. This module
checks the database and returns an error if the username is already in use. In
addition to checking the username the module checks if there is already an
account using that email address, if there is, a message is displayed with
links to the login or reset password pages.
Installation
@@ -26,3 +26,12 @@ There is only one permission for this module and it is completely optional. Set
"Ignore Flood Checking" for a role if you wish them to not be checked by the
300 query a day limit. I would recommend against giving the "anonymous" role
this permission.
Developers
-----------
If you wish to use Friendly Register with your module:
1) Add the friendly-register-name or friendly-register-mail class to your
field(s).
2) In your module, call friendly_register_load_resources() after adding the
classes. This will usually happen inside the function that adds the classes.
See friendly_register_form_user_register_form_alter() for an example.