Considered feature-complete by its maintainers.

Phing Drush Task

Drush tasks running in Jenkins

Overview

A Drush task for Phing. This task enable usage of Drush commands in Phing build scripts.

Picasa Slideshow Input Filter

This module provides an input filter to add a Picasa Webalbum Slideshow anywhere input filters are accepted.

Webform Term Options

This module is adding a pre-built option lists of vocabulary terms to be used in webform components.

Multigrouping

Ever wanted to have more then one level of grouping?! The Multigrouping is your friend!

Commerce (Product Display Manager)

Product Display Manager Page

Module description

This module simplifies managing the relationship between products and product display nodes.

Features:

Google Checkout

Provides integration with Libraries API (2.x-dev) and a Drush Make script to download the google-checkout-php-sample-code.

This project is aimed at providing basic foundation for integrating your online store with the Google Checkout API using PHP.

Configuration

The Google Checkout integration can be configured by using Drupal variables. For example, the following can be placed in a site's settings.php file.

$conf['google_checkout_merchant_id'] = '...';
$conf['google_checkout_merchant_key'] = '...';
$conf['google_checkout_server_type'] = 'sandbox'; // Defaults to production.
$conf['google_checkout_currency'] = '...'; // Defaults to USD.

Example Usage

<?php
google_checkout_load_include('item');
$cart = google_checkout_cart_init();
$cart->SetMerchantPrivateData(new MerchantPrivateData(array('uid' => $user->uid)));
$item = new GoogleItem(t('Something really nice for $17'), '', 1, 17);

...

// Communicate information to GoogleCheckout and redirect user to complete checkout.
google_checkout_cart_redirect($cart);

// Or make button.
echo $cart->CheckoutButtonCode();

/**
* Handle incoming request from Google Checkout.
*

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only