Provides a category for the user. If the admin has been selected a category for this user when she is going to create new Article, this article would be relathed to the category
Clef is a replacement for usernames and passwords that lets users log in to websites using just their phone, instead of remembering passwords. Using 2-factor authentication, Clef makes authentication secure and easy.
This module allows users to log into your Drupal site using Clef.
By default, a "Log in with your phone" button is added to existing login forms. If a user's computer is not logged in to Clef, clicking the button will show a QR code that users can scan with their phone in order to log into your site. (If they're using a phone to view your website, the button will open the Clef app instead.) If the user is logged in to Clef, clicking the button automatically authenticates them with the email address associated with the user's Clef account. If that email address is already in use then the user is logged in, and otherwise the user is registered if possible (or redirected to the registration form, depending on the module's settings).
The module also provides a block with the "Log in with your phone" button so you can place it wherever you'd like, or you can use the clef_login_button() function to place the button using code.
Mongo Entity provides developers with entity and controller classes for storing entities entirely in a MongoDB collection. It eliminates the need for a base table, or any SQL queries at all; an entity's ID, name, properties, and any field data are all written directly to MongoDB. It also provides classes for embedded entities: entities that are stored as subdocuments in a parent collection, but that can be managed using the standard Entity API CRUD methods, as well as found with EntityFieldQuery. Ultimately, loading a parent entity should automatically load and embed all its child entities, with only one query to a single MongoDB collection.
Mongo Entity is for developers. It provides no interface, nor does it alter the behavior of existings sites out of the box. Modules can use the provided MongoEntity and MongoEntityController classes in hook_entity_info to store entities in MongoDB, rather than a SQL database.
Features
Minimal configuration. Save custom Entities entirely in automatically generated MongoDB collections. No SQL tables needed.
Performance boost. Field data is stored with the Entity in MongoDB, reducing the need for complex JOINs and multiple database queries to load a single object.