Webform Insightly

Component type

module

Categories

Maintenance status

Development status

Downloads

738

Component created

Component changed

This module enables the integration of insightly CRM with webforms. It creates a new contact for each webform entry and adds opportunities for every subsequent entry of the contact.

This is performed by mapping the webform fields with insightly fields; 'FIRST_NAME', 'LAST_NAME', 'BACKGROUND', 'IMAGE_URL', 'EMAIL', 'PHONE', 'BID_AMOUNT'.

CUSTOMFIELDS can also be mapped using this module. Make sure that the field name exists in insightly for this to work. You need to add custom fields at System Settings > Custom Fields.

Google Analytics YouTube

Component type

module

Maintenance status

Development status

Component created

Component changed

Tracking YouTube Player Events with Google Analytics.

Usage:

Include the scripts in the body section of the HTML document, just before the tag. You’ll need to be running on a web server instead of opening the file directly in your browser. Flash and JS security restrictions will prevent the API from working when run locally.

WYSIWYG CodeSnippet

Component type

module

Maintenance status

Development status

Downloads

1874

Component created

Component changed

This module enables the CodeSnippet plugin from CKEditor.com in your WYSIWYG. It includes the highlightjs library and all available styles for it. If you've ever wanted to drop code examples in your Drupal content and have it highlighted in a pretty format, this is for you.

Installing

WYSIWYG (dev version), Libraries API, and CKEditor library version 4.x+ are required.

User Utils

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

A lightweight module that exposes a class that will automatically provision a user account AND log the new user in. This is useful for quick sign up forms. This is module is for module developers and does not contain any UI level configuration.

Currently this module is really just one member function of the UserUtils class:

$utils = new UserUtils();
$utils->provisionUser(array('email'=>$form_state['values']['email'], 'password'=>$form_state['values']['password']));

I have included a quick example of using this within the module.

Extra SiteInfo

Component type

module

Maintenance status

Development status

Downloads

788

Component created

Component changed

About Extra siteinfo

Extra Site Information module provides Drush commands and UI level view to see the count of Nodes, Content types, Users, Roles existing in the site.
This module also provides the information about Currently loggedin users in your site.

Usage

Currently loggedin users in your site. Visit admin/extra-siteinformation/currently-loggedin-users.
Admin can also end the sessions of other users.

Data integrity checker

Component type

module

Categories

Maintenance status

Development status

Downloads

775

Component created

Component changed

By default Drupal provides ability to describe foreign keys through the Schema API, but it doesn't create them on database physical level. So data integrity could be corrupted.

This module checks database for data integrity issues.

Installation

1 Download and install this module.
2 Open page: Reports -> Data integrity (admin/reports/di).

API

Module provides hook_di_checker_info() hook, so other modules could provide their data integrity checks which will be shown on Data integrity report page. See di_checker.api.php for details.

User data wrapper

Component type

module

Categories

Maintenance status

Development status

Downloads

315

Component created

Component changed

This is a module that allows you to use the $account->data in a structured way. The use case for this module would be if you need to store small amounts of data against a user that needs no UI, then this would be a good fit. Do not user $account->data as a replacement for fields.

You can then use entity meta wrappers to get or set your defined data as properties.

You define properties using a user_data_info hook: