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

Vimeo Gallery

A simple module which helps you to configure your vimeo account and get videos and display them as gallery in your instance.

Google Moderator

This module implements a content type allows embedding of a Google Moderator form in your drupal website.

Batchbook

Batchbook is a hosted, social CRM that integrates with a number of third party systems.

Webtrends

This module brings Webtrends analytics integration to Drupal. All you need to do is to install the module, change the configuration settings, and you are good to go.

Key features:

Extended History

Extended History aims to help module developers (or PHP-savvy web developers) by keeping an extended history of visits to nodes for each user.

While Drupal already provides some basic funcionality in the history table, there are a couple of drawbacks:

  • History records are purged after 30 days;
  • That 30-day limit is non-manageable, unless you disable cron runs altogether;
  • It doesn't count how many times each user saw that node.

Original code from node.module:

define('NODE_NEW_LIMIT', time() - 30 * 24 * 60 * 60);

function node_cron() {
  db_query('DELETE FROM {history} WHERE timestamp < %d', NODE_NEW_LIMIT);
}

Extended History adds a new table called extendedhistory to store (uid, nid, timestamp, count) tuples.

For anonymous users, it keeps these details in session until they log in or register, at which time this is saved into the DB under their new UIDs.

If you want records to be deleted after some time, this can be set in Site Building » Extended History.

As 'API', it provides the following function:

	/**
	 * Returns an array of the form:
	 * array(
	 *   'timestamp' => [int],
	 *   'count'     => [int],
	 * );
	 * If no record was found, it returns an empty array.
	 */
	function extendedhistory_last_viewed($nid)

Revive Video Ads

This module allows integration of Video Advertisements streamed via Revive ad server (formerly OpenX ad server) into videos played via flowplayer using the Video Module. The module requires configuration of Revive Ad Server, Video Streaming Server (possibly Red5 or one of the paid RTMP services) and Flowplayer before it can be used. The development of this module was sponsored by Alamosa.tv

Pages

Subscribe with RSS Subscribe to RSS - Integrations