Maintainers strive to actively monitor issues and respond in a timely manner.

Biblio Mendeley

The module allows drupal users to connect to the mendeley api after having registered their website at dev.mendeley.com.

Background Process

Drupal 7 Settings

Dependencies


Modules that utilize Background Process


Developer

Executing a background process

<?php
$handle = background_process_start('mymodule_dosomething', $myvar1, $myvar2);

$handle = background_process_start(array('myclass', 'mystaticfunction'), $myvar1, $myvar2);

$handle = background_process_start(array($myobject, 'mymethod'), $myvar1, $myvar2);

$handle = background_process_start_locked('dontrunconcurrently', 'mymodule_dosomething', $myvar1, $myvar2);
?>


Executing arbitrary http requests

The following code shows how to fetch data via http in "parallel" (asynchronous non-blocking mode)
It uses an API similar to that of HTTPRL but "slightly" different, in order for the caller to gain more control of the requests. Plans to join forces with HTTPRL are in place.

Drupal way: blocking/synchronous

<?php
$r = array();
for ($i = 0; $i < 10; $i++) {
  $r[] = drupal_http_request('http://www.example.com/stuff/' . $i);
}
print_r($r);
?>


Webform Password Field

The Webform module does not have a 'password' field type because the author feels that it is a security risk and that it should be separated from the module itself. Thus this module exists. This module is designed to work with Webform 3.x ONLY. It will not support Webform 2.x.

Security implications: Yes you really need to read this stuff lol
There is NO encryption on data saved by this field type!!! It is saved in plain text right in the DB so be careful how you display this field. You CAN encrypt the pw yourself if you use the webform hook called: hook_webform_submission_presave(). Add this to a module of your own and you can modify the value before it's saved to the DB. You can find docs on how to use this hook in the webform module dir in a file called webform_hooks.php along with other hooks.

This module does NOT do any type of password strength validation. Thats up to you! The only thing this module does is allow you to set a field to a password field and thats it. NOTHING ELSE. It has zero brains as what you do with this password field is completely up to you (Its basically a textfield that is displayed differently, nothing more). The drupal Password validation JS IS added in for you to utilize (you can viewsource with any web browser and see the pw JS in the head area), but the module itself does not actually utilize it.

LDAP Map

A module that uses the API exposed by the LDAP project to map LDAP attributes to user profile fields.

Ubercart DirectPOS integration (German Postbank, Sparkassen)

This project aims to integrate the DirectPOS payment system into Ubercart. DirectPOS is used by some large German banks (Postbank "Paysolution", Sparkassen "Internetkasse").

Golf Tracker

The golf tracker module provides a full set of tools to allow your users to:

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained