The current maintainers are looking for new people to take ownership.

Space Gallery

Screenshot

This module is a Views style plugin. It works as image gallery and display images as Space Slide Show.

Taxonomy Builder API

End of life

As of December 31st, 2011,Taxonomy Builder API has reached “end of life” and is deprecated in favor of Taxonomy CSV import/export. Please post an issue if you feel this module is still valuable and wish to pick up maintainership.

API

The example below creates a simple hierarchy of countries, states, and cties.


  // Replace with whatever vocabulary ID the terms should be added to.
  $vid = 12;

  // Hierarchy arrays.
  $hierarchies = array(
    array('United states', 'Massachusetts', 'Boston'),
    array('United states', 'Massachusetts', 'Worcester'),
    array('United states', 'New York', 'New York'),
    array('United states', 'New York', 'Albany'),
  );

  // Adds terms to the taxonomy hierarchy one by one.  This makes it easy to
  // break up large trees via the batch API so the build doesn't time out.
  foreach ($hierarchies as $hierarchy) {
    taxonomy_builder_save_terms($vid, $hierarchy);
  }

This produces a taxonomy tree with the following structure:

  • United states
    • Massachusetts
      • Boston
      • Worcester
    • New York
      • New York
      • Albany

Rules and Views Integration

This module integrates two of the most powerful Drupal modules: Views and Rules.

It allows your rules to execute a view, and your views to execute rules.

Two sides of the coin

This module provides two major pieces of functionality:

  1. Execution of views from a rule. The rendered results of this view can then be used later to pop in an email or add to a comment, etc.
  2. Execution of rules by rendering a view - Via a new display type for views: 'Rules Executor', instead of rendering the results of the view into HTML we render the results 'into' the Rules module. You can specify a rule set to render each row into, and use the fields from the view to specify the arguments for the rule set.

This gives an incredible amount of flexibility and power, with this module you can do things such as:

  • Automatically close issue tracker cases after two weeks of inactivity.
  • Email users a digest of their new content every week.
  • Disable comments on content over 2 weeks old.

Requirements

  • Rules module.
  • Views module - at least version 2.7 is required.

Ubercart Attribute Length

This is a utility module for use with the attribute system of Ubercart.

LinkedIn Integration

This module provides integration with the LinkedIn API. At the moment it supports the following features:

OG Open Write

This module allows organic group administrators to set some content types as "open write", allowing registered users to post to an organic group without needing to be subscribed.

Pages

Subscribe with RSS Subscribe to RSS - Seeking new maintainer