Not supported (i.e. abandoned), and no longer being developed. Learn more about dealing with unsupported (abandoned) projects

ShoppingAds

ShoppingAds was a Drupal module for the discontinued shoppingads service.

Node factory

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);

Multisite Maintenance

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.

Note that this module depends on the multisite_api module.

*Installation*
1. Enable multisite_api and multisite_maintenance modules at admin/build/modules (You only need to do this on one of the sites in your multisite)
2. Give the 'perform maintenance on multisites' permission at admin/user/access
It should go without saying that this is a very powerful module and its use should be
restricted to users that have a strong understanding of Drupal multisite setup
3. Read all help text at:
admin/multisite/multisite_setup
admin/multisite/multisite_setup/status
admin/multisite/multisite_setup/update

Dynamic Logo

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).

txn_currency

screenshot.13-08-2010 17.43.02.png

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

REST Client

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

Pages

Subscribe with RSS Subscribe to RSS - Unsupported