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

Commerce Product limit

"Commerce product limit" is a module on top of Drupal Commerce that allows administrators and other product maintainers to set a maximum order quantity for any product.

uc_paynearme

An ubercart gateway for the paynearme service.

Taxonomy Matrix

Somewhat based on the Matrix module. Taxonomy Matrix is a bridge between taxonomy and a CCK Matrix field. It can be used to create a matrix of selections based on 2 selected taxonomy categories.

Entity tree

This is an API module to help putting entities in a tree hierarchy. (Actually. DAG. I want to support multiple parents). We encode trees by enumerating each children of a parent, encode them with UTF-8 (I just use it as an algorithm) and then writing them down as an encoding of the materialized path. As UTF-8 as a binary stream sorts the same as the numbers encoded this works well. UTF-8 can encode at most 2**31 so that's the most children each parent can have.

MySQL indexing restricts us of somewhat to a max depth of 255 (or less) but that's not serious.

In PostgreSQL you want to use a c_locale character field ( I think ) and in MySQL, use VARBINARY.

See this presentation for a through explanation.

Currently, the only implemented operation is the "find the new number for a newly inserted element" because the rest of the operations are trivial and work well on the UTF-8 encoded materialized path and so just requires UTF-8 string manipulation:

  1. get a list of parents. If the encoding is ABCDE, then the parents are A, AB, ABC, ABCD.
  2. Find a subtree. The children of ABC can be found by LIKE 'ABC%'
  3. Move subtrees. To move the children of ABC under PQ just preg_replace('^ABC', 'PQ', $encoding);

Webform Constant Contact Component

This module integrates the Constant Contact module with the Webform module.

It provides a Webform component called "Constant Contact Email" to enable you to add and remove subscribers to and from your constant contact mailing lists using a form built by webform.

Commerce IPay88

IPay88 - Internet Payment by Mobile88.com.

Integrates Drupal Commerce with IPay88 (Malaysia) payment gateway to allow payments through Credit Cards, PayPal, Maybank2U, CIMB Clicks, etc.

Created by Leow Kah Thong. Sponsored by Gix Solutions.

Features

  • Choose the payment options to use from admin settings.
    Important: Make sure the payment option selected supports your website's currency.
  • Recurring payment support.
  • Re-query (re-check) for payment status with IPay88 server on cron run (disabled by default).

Installation

  1. Install Libraries API module.
  2. Download IPay88 PHP class from my Github repository. See important notes below for version info.
  3. Extract to your libraries folder such as sites/all/libraries/ipay88.
  4. Install Commerce IPay88 module.
  5. Visit settings page and save your Merchant Code and Key provided by IPay88 in Store > Configuration > IPay88 settings.

Important notes

Please follow the version of the IPay88 PHP class:

Pages

Subscribe with RSS Subscribe to RSS - Seeking new maintainer