Use a third-party CSS or JS Framework, a self-hosted service like a CRM, or a third-party service with the site.

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

ShareBar

ShareBar Configuration Options

The Drupal Sharebar module lets you easily add a "floating" social media submission bar on your website (like that found on Mashable) that includes share buttons for the most popular social media websites online such as Facebook, Twitter, and Google +1 Buttons.

Configure ShareBar with these Social Buttons below and more:

  • Twitter
  • Facebook Like and Share Buttons
  • Linkedin
  • Google +
  • Reddit
  • StumbleUpon
  • Digg
  • Dzone
  • DesignFloat
  • Email-to-friend option
  • Add many others at your own discretion...

Other Sharebar Features Include:

  • Add, edit, and disable any buttons from social websites. Ability to add large and small buttons (small buttons are moved under the node title when the page is sized to less than "X" pixels wide if that option is used).
  • Order the Sharebar buttons by weight, i.e. -1, 0, 1, 2, 3, etc.
  • Radio buttons for enabling or disabling the Sharebar on any content type set up on your Drupal website, i.e. Blogs, Articles, and so on.

XMLsitemap Images

This module extends features of XML Sitemap module.
According to Google Webmaster Tools Help (http://www.google.com/support/webmasters/bin/answer.py?answer=178636) we are able to add additional information about important images on site pages.
This module will add information about all published images (from image fields in content types) to XML Sitemap.

Features plan
To create ability to choose what image fields will be added to sitemap (so add setting in field edit)

Installation notes

1) Place this module directory in your "modules" folder (this will usually be
"sites/all/modules/"). Don't install your module in Drupal core's "modules"
folder, since that will cause problems and is bad practice in general. If
"sites/all/modules" doesn't exist yet, just create it.

2) Apply the patch to xmlsitemap module (xmlsitemap.patch). Instructions can be
found at http://drupal.org/patch/apply.
However, a quick reminder:
a) Change the directory to the root directory of your Drupal core:
cd /htdocs/example.com
b) Change the directory to the directory of your Drupal contributes module:
cd sites/all/modules
b) Copy the patch to this directory
cp xmlsitemap_images/xmlsitemap.patch xmlsitemap
c) Change the directory to the directory of your Drupal contributes module:

Invite link

Provides the invite link for invite module. Link can be used on external sites and clicked by unlimited visitors. When someone registers, invitation is treated like sent from invite module.

videojs_fix

Fixed version of videojs. Adds a wmode settings for the flash player

Pages

Subscribe with RSS Subscribe to RSS - Integrations