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

Webform Charts

This module integrates the Webform module with the Charts (with an "s") module.

Intro.js Integration

This module unofficially provides support for Intro.js on Drupal-based websites.

Gittip

Gittip is a platform used to give small weekly cash gifts to people you love and are inspired by. As they call it " Distributed Genius Grants".

There's a growing Drupal community already in Gittip trying to provide a more sustainable way to fund contributions.

This module provides a very simple integration with Gittip by providing three different formatters for a textfield:

  • Plain gittip link for the username
  • Gittip button
  • Gittip widget

More Gittip API stuff is to be explored.

Gittip Giving submodule

Provides a Gittip giving field type to help organizations that want to allow their members to contribute or decide Gittips that get rolled up and donated through the organization's funds. Basically this allows you to implement the Khan Academy grant model on your Drupal intranet site.

Requires the Elements module.

Like this module?

Then join Gittip and give Pedro (pcambra) or Dave a recurring genius grant on Gittip!

Zendesk Forms

This module can display forms to the drupal user and submit the entered data to
Zendesk. The forms can be used programmatically or just be embedded via the
provided block(s).

VarHammer (of steel)

VarHammer (of steel) is a tool that auto generates configuration form pages
for any desired Drupal variables. If your site have a lot of settings
stored in Drupal variables and you want to provide easy access for non-
developers but don't want to spend time to create a custom admin interface,
this module might be useful for you.

Usage:

Create a Drupal variable named "varhammer_settings" and go to admin/config
and you will see a VarHammer section with links the defined settings form.

You can set the variable programmatically but the easiest way is to do it in
the $conf array in settings.php or to use the Strongarm module (eventually
combined with Features).

Configuration example (as used in settings.php):

<?php
$conf['varhammer_settings'] = array (
'paying_user' =>
array (
'title' => 'Paying user settings',
'permission' => 'access administration pages',
'description' => 'some kind of description',
'settings' =>
array (
'max_per_user' => 'Max connections per user',
'api_key' => 'The API key to the gateway',
'default_product_id' => 'the ID of the default product',
'other_stuff' => 'other stuff here',
'other_stuff2' => 'other stuff here2',
),
),
'performance_settings' =>
array (
'title' => 'Performance settings',
'permission' => 'access administration pages',

flux Dropbox API

Integrates with the dropbox API based upon the flux Services integration.

This is an integration module, so it does not expose any end-user functionality. It integrates Drupal with the dropbox API by integrating with the Rules module. Therefore the module integrates the BenTheDesigner/Dropbox PHP 5.3 SDK for the Dropbox REST API.

Similar projects

The Drobox client module allows users to have a "Send file" page where users can send a file directly to their Dropbox account.

Requirements

API

  • The module connects to Dropbox via the BenTheDesigner/Dropbox PHP 5.3 SDK for the Dropbox REST API and provides a clean API for developers to interact with Dropbox.
$account = entity_load_single('fluxservice_account', $id);
$stream = fopen('php://temp', 'rw');
fwrite($stream, 'Keep calm & trust Doc Brown!');
$account->client()->putStream($stream, 'doc_brown.txt');
fclose($stream);

Credits

This project has been initiated and is maintained by drunomics.

Pages

Subscribe with RSS Subscribe to RSS - Integrations