e-Commerce - CommWeb Payment Gateway

Component type

module

Categories

Maintenance status

Development status

Downloads

2559

Component created

Component changed

This modules allows payments to be made using the CommWeb (Commonwealth Bank Australia) payment gateway when using Drupal e-Commerce 4.x.

NOTE: This module was an extension for and worked only with eCommerce 4.x which is now obsolete.

If you wish to use eCommerce try Drupal Commerce or Ubercart.

Node Media

Component type

module

Categories

Maintenance status

Development status

Downloads

1539

Component created

Component changed

Project discontinued in favor of media.module

This module was aimed to allow users to easily attach media to nodes, and publish those media in a gallery view.

What do we consider Media?

When you mix images + audio, you got a video. When you want to display those 3 kind of resources in a node... you want Media.

Media API

Component type

module

Categories

Maintenance status

Development status

Downloads

3153

Component created

Component changed

This module was updated on March 27, 2008. It contains numerous changes, including transferring definition of types, transforms, presenters, extensions to hookable functions. Although this is a development module, and therefore not yet for production sites, it is in a beta state.

This module provides an API for which extensions, types, presenters, transformations, administrative capabilities, layouts, filters, and other things can be defined by other modules for acting upon files located with the system.

Jaiku

Component type

module

Maintenance status

Development status

Downloads

3333

Component created

Component changed

This module allows a Jaiku stream to be cleanly added in a block.
The Full Stream, User Info, and the current presence information are supported.

Jaiku is a microblogging service, similar to Twitter, that was recently acquired by Google. It allows you to post anything in 140 characters or less to a web page on jaiku.com. It's main point over Twitter is it's high level of mobile compatibility. For more information, see Jaiku's about page

REST Client

Component type

module

Maintenance status

Development status

Downloads

4896

Component created

Component changed

This module is undergoing large changes, production use is not recommended.

INTRODUCTION

REST Client is a robust HTTP request module to consume REST style services.

Why use REST Client instead of drupal_http_request():

  • Streams large files
  • Uses Expect 100 header before sending data in case of redirection
  • Fully customizable HTTP request
  • REST utility functions: HMAC, binary SHA1, binary MD5

Amazon Web Services API

Component type

module

Maintenance status

Development status

Downloads

4159

Component created

Component changed

Unless a module specifically calls for this module, developers should check out the AWS SDK for PHP module instead.

------------------------------------------------------------------------------

This module is actually a collection of modules. The first being the main AWS API
module. The sub-modules each deal with a specific Amazon Service.

txn_currency

Component type

module

Maintenance status

Development status

Component created

Component changed

Support multi-currencies in transaction payment. Developed for ecommerce 3.x.

Dynamic Logo

Component type

module

Categories

Maintenance status

Development status

Downloads

3673

Component created

Component changed

This is a simple module that enables administrators to upload more than one logo and choose which one to display in certain occasions (Like google).
In future there will be a feature that enables administrators to schedule the appearance and disappearance of each logo.

Multisite Maintenance

Component type

module

Categories

Maintenance status

Development status

Downloads

1312

Component created

Component changed

This module is looking for a new maintainer. There are better tools to do this (i.e. Drush). Furthermore the idea of a graphical tool to perform updates on multiple sites is not currently possible to do "the right way" without some serious patches to update.php.

Helps site managers to perform batch maintenance on multisite installations. Currently the module can take selected sites off-line and then back on again. It can also run update.php on selected sites.

Node factory

Component type

module

Maintenance status

Development status

Downloads

3001

Component created

Component changed

This module is no longer maintained

Ever wanted to create nodes on the fly? This module provides functionality to do this.

With this module you can write code like this to produce a node.

// my_nodetype must be an existing nodetype
$edit = node_factory_create_node( 'my_nodetype');

node_factory_set_value( $edit, 'title', 'my value');
node_factory_set_value( $edit, 'field_node_ref', 123);
node_factory_set_value( $edit 'uid', 321);
node_factory_save_node( $edit);