Considered feature-complete by its maintainers.

UC Rules

This module integrates Ubercart 2.x with the Rules module. This is useful if you look for a way to implement rules, which are more or less compatible with the version 3 of Ubercart or if you like to react on certain events in Ubercart. It is useful for example to send special information to the customer, when he has finish the order or if you like to upgrade the customer account to another role after the order is completed.

Form Save

This module allows you to use Ctrl+S or Cmd+S to save your forms.

The module deals with the following issues:

Webform Tokens

Webform Tokens provides tokens for user form submissions for forms created with the module Webform 3. This functionality is included in Webform 4, so this module is not needed. The tokens can then be used anywhere tokens are supported. The Token module is required to see what tokens are available.

Underscore.js

Provides Library API access to the Underscore.js JavaScript library.

Features (7.x-2.x)

  • Makes Underscore.js available to other modules and custom code via the Library API
  • Provides a drush command (underscore-download) to download and install the latest version of the library

Usage (7.x-2.x)

After enabling this module, install the Underscore.js JavaScript file:

  • Without drush: Download underscore.js and store it in your libraries directory. In most cases the resulting path should be sites/all/libraries/underscore/underscore.js
  • With drush: Run the command drush underscore-download

In your module code, add the library with libraries_load() and drupal_add_library(). If unsure where, add it in an implementation of hook_init(). Use 'underscore' for both the module and library name arguments, like this:

libraries_load('underscore');
drupal_add_library('underscore', 'underscore');

You can update your version of Underscore.js to the latest version by calling the drush command (drush underscore-download).

Upgrading from 7.x-1.x to 7.x-2.x

The 7.x-2.x branch is a rewrite of the existing module. Upgrading to the 7.x-2.x branch will require changes to your code. Notable changes to the module include:

  • The actual Underscore.js JavaScript is no longer bundled with this module. It must be downloaded and installed manually or with the drush command provided in this module.
  • The Underscore.js library is no longer enabled automatically. To use it, your code must call libraries_load() and drupal_add_library(). An example is provided in the section above.
  • Now uses the library hooks provided by Libraries API module (rather than hook_library() from core).

Read More Control

A module to control when the teaser Read More link appears in Drupal 7.

There is no mechanism in core to decide if the read more link should appear. This means that this link will always show no matter if there is additional content to display. This module tries to overcome this issue by allowing administrators to determine how to handle this link in relation to both the content type and individual fields.

The module allows you to add Read more links to other supported view modes (RSS feed, Search results, etc) or even other supported entity types. Particularly useful if you use panels or views and either programmatically add additional view modes or use other contrib modules to provide these.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only