This project is under active development.

userloginpopup

Userloginpopup module creates a new user login popup block.

Scald: Twitter

Screenshot of the dialog allowing users to add a Twitter Media Atom

Scald: Twitter is a tweet provider allowing Scald module users to add Tweet At

Doctor

What is it?
The module "Doctor" is "listening" to a doctor listen item that create during your module actions.

How does it work?
The doctor create an entity called doctor. When running the drush command drush doctor-listen(AKA dols), the module will wait for a doctor entity entry to create and will present the data on the CLI. If there any items that created when the doctor did not listen, the next time the you initialized the command, they will be displayed for in the CLI.

/**
 * Implements hook_node_insert().
 */
function doctor_example_node_insert($node) {
  doctor_create(
    array(
      'wrapper' => entity_metadata_wrapper('node', $node),
    )
  )->save();
}

/**
 * Doctor listener callback function.
 *
 * @param $data
 *  The un-serialized data listener item.
 */
function doctor_example_doctor_listener_callback($data) {
  $wrapper = $data['wrapper'];
  $params = array(
    '@title' => $wrapper->label(),
    '@user' => $wrapper->author->label(),
  );
  drush_print(dt('The user @user posted a node with the title: @title', $params));
}

drush doctor-listen --timeout=120

Why is this use full?

User Create By Role

Settings page for User Create By Role

User Create By Role is a very simple module that is meant to simplify creation of user accounts. All it does is add additional action links in addition to "Add user" for each role.

TestBox

This is a testing ground to try new mods.

Rapidmail

This module provides basic integration for rapidmail-module.
Current features:

Pages

Subscribe with RSS Subscribe to RSS - Under active development