Maintainers monitor issues, but fast responses are not guaranteed.

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?

Media Pane [D7]

demo picture of media pane ui

Media Pane module is a module that makes it very easy for users to add media (audio, video, images, etc.) to a site using the Panels module.

It combines functionality from Fieldable panels pane module (http://drupal.org/project/fieldable_panels_pane) and media module (http://drupal.org/project/media) as well as additional configuration functionality.

Additional features include:

  • Independent selection of view mode for pane giving a lot of flexibility.
  • Linking media content to drupal internal paths or external urls.
  • (For image content) built in overlay feature for picture annotation.

Innitial Configuration

Before starting to use this module you need to configure file type display (admin/structure/file-types). Choose the file type (eg. Images) and configure the display for the different display modes (eg. Default -> Images -> Large, Preview -> Image -> square_thumbnail, etc.). Now when you choose a view mode on the media pane, the media will be displayed as you just configured it.

Demonstration

For a demonstration of how easy it is to use the Media Pane module with the Panels In Place Editor here is a demo video (no sound) : http://www.youtube.com/watch?v=-GNPruNYDrg

Modules

Rapidmail

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

Google Tasks

Allows to manage lists and tasks with Google Tasks integration.

The module supply a main page /gtasks allowing to manage tasks by list.

Commerce WorldCash

WorldCash integration for the Drupal Commerce payment and checkout system. Currently supports immediate payments from Australian banks on the checkout form.

Drupal 7 bootstrap carousel

drupal bootstrap carousel module

Drupal 7 Easily create a bootstrap carousel for use with http://drupal.org/project/bootstrap Bootstrap theme 7.x-2.0-beta and above.

Description

Bootstrap Carousel - is a module that creates a new content type , and a new Bootstrap Carousel block for use in you Bootstrap theme with this you can easily make a Carousel such as this Bootstrap Carousel Example

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained