Maintainers strive to actively monitor issues and respond in a timely manner.

Mailinglist

Building a replacement for Listhandler for D7 with the intent to handle significantly more features.

Drush Environemnt

This is a DRUSH command that makes it easy for you to enable/disable modules, set permissions, and set variables depending on your current environment. Basically, this solves the problem of "I want devel enabled on DEV but not on PROD."

INSTALLATION

  • Install the environment.drush.inc file in your sites/all/drush folder
  • Add something like the following to your sites/all/drush/drushrc.php file
/*
// Add this to your drushrc file and modify as needed.
// The option key MUST be enviroments.
$options['environments'] = array(
  // #key = The enviroment name.
  'development' => array(
    // The list of modules to enabled (1) or disable (0).
    'modules' => array(
      'views_ui' => 1,
      'context_ui' => 1,
      'devel' => 1,
      'theme_developer' => 0,
    ),
    // The list of variables to configure.
    'settings' => array(
      'preprocess_css' => 0,
      'preprocess_js' => 0,
    ),
    // The list of roles to grant (1) and revoke (0) on a per role basis.
    'permissions' => array(
      'Administrator' => array (
        'administer features' => 1,
        'administer permissions' => 1,
      ),
      'anonymous user' => array (
        'administer features' => 0,
        'administer permissions' => 0,
      )
    ),
  ),
);
*/

Ubercart cart bonus

This module is a very small module designed to just add extra items to a user's (ubercart) shopping cart under some simple conditions and apply a discount % to those extra items added

CTools cookie context

Ctools cockie context administrativ interface

Grabs a specified cookie value and use it as a CTools context

Timemap

Implements SIMILIE Timemap widget in Views.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained