CRM Integrator
Component type
Maintenance status
Development status
Component created
Component changed
Module to easily map webform submissions to CRM actions.
Module to easily map webform submissions to CRM actions.
Integrates with the Google Places and Google Maps APIs.
Shows a list of places of a certain type, or types, configurable in the settings, within the specified radius of your specified location. Your location and these places are shown on a Google Map.
Clicking on the name of a place takes you to the place details page, which shows the address, phone number, a link to the place's website, if it has one and a link to its Google Places page. There is also a small map, which links to a full Google Map and the latest 5 reviews are shown, if available.
Allows per organic group override of variables.
Using the variable API, allows for overriding of variables per organic group.
Add a wiki like header above content. Info like author, creation date, contributors and a call to edit.
Just print wikiheader_get_header($node) in your theme.
Enables per node overriding of page.tpl.php from select list on node creation/edit -form. Templates are scanned from default theme's folder by matching page--content-type--tp*.tpl.php pattern.
Fork from Template Picker which enabled only node.tpl.php. Combination of both gives tremendous flexibility.
Currency change without using any Drupal commerce module
<?php
error_reporting(E_ALL ^ E_NOTICE);
/**
** Implementation of hook_permission().
**/
function currencycode_permission() {
// Restrict access to either of your new URLs.
return array(
'access currencycode' => array(
'title' => t('access currencycode'),
'description' => t('Allow users to access currencycode'),
),
);
}
Javascript Templates provides a simple workflow to add HTML templates to 1 Javascript file as output. You can add your own templates with a custom hook or alter currently available templates.
The main goal of the module is to use your templates within Javascript (for example in underscore.js templates). This prevents you to have any line of HTML within your Javascript code.
Mustache.js-like templates do NOT have my preference because they create <script></script> tags that are not elegant within your HTML DOM.
This module helps the administrator to easily remove duplicate nodes according to one of the node fields.
The duplicate nodes found are permanently removed. It can be very useful with Drupal Feeds module (Feeds).

- No reports yet.
A context condition to support hierarchy matching when looking for tagged nodes
A minor form of contexts node-taxonomy support.
I had a large tree hierarchy of terms, and needed to set the condition "if this term or any under it applied to the current node then ..." (add a special footer block)
This is a sandbox module for creating Entity in Drupal 7.
What this module is capable of currently:-
1. User can create, Add, Edit, Delete Fitness activity Entity.
2. User can view individual entity by clicking on view tab.
3. Views integration.
4. Listing of all fitness activities in tabular format.
5. User can see his/her specific entities in tabular format.
6. Currently I am working on Rules integration in entity.
If you have some comments on respective module please update. Also look into the patches/code I have committed.