Submit Once

Component type

module

Maintenance status

Development status

Downloads

419

Component created

Component changed

This module has hit a conceptual issue. Since the form_build_id changes throughout the lifetime of the form, there seems to be no way to identify a form such the user can't go back and submit it...

For a different approach, try
http://drupal.org/project/hide_submit or
http://drupal.org/project/block_submit

GiroConnect: Payment gateway for Ubercart and Commerce

Component type

module

Maintenance status

Development status

Downloads

464

Component created

Component changed

This module is deprecated.

This module is a plugin for both Ubercart and Drupal Commerce on Drupal 7 only to support all payment methods of GiroSolution AG. Currently supported:

  • giropay
  • Lastschrift (aka ELV or Direct Debit)
  • Credit Cards
  • GiroTreuhand
  • GiroMobile

Note: GiroTreuhand and GiroMobile are in testmode only, if you need further details, please contact GiroSolution under www.girosolution.de

OpenLayers Blocks

Component type

module

Maintenance status

Development status

Downloads

3924

Component created

Component changed

Overview

This module allows you to create Openlayers blocks.
When editing a map, enable the "OpenLayers block provider" and a new block will be available.
You can also use Bean or Boxes, depending on your favorite block manager.

Features for Drupal 7

This module provides:

Mollie SMS

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This module provides integration between the Mollie SMS service (a Dutch SMS gateway provider mollie.nl) and the SMS frameworkproject.

KC Tools

Component type

module

Categories

Maintenance status

Development status

Downloads

356

Component created

Component changed

This is a set of custom development tools for extending Drupal's functionality and promoting code reuse.

Quick SimpleTest

Component type

module

Maintenance status

Development status

Downloads

351

Component created

Component changed

This module extends the SimpleTest module to allow module developers to run a faster and fully compatible version of it's DrupalWebTestCase test, with a information loss kept near the minimum. It has been created to make test driven development less painful, without having to switch to a different testing framework than the standard one.

ObjectAPI

Component type

module

Maintenance status

Development status

Downloads

421

Component created

Component changed

The object module seeks to truly objectify core entities to make them easier to work with in a programmatic way. It is essentially an object wrapper around the procedural code in core.

Examples

Load and change the title of an existing node 1.

$node = new drupalNode();
$node->load(1);
$node->title = 'Test Title';
$node->save();

Load user 212 and change the username.