Maintainers monitor issues, but fast responses are not guaranteed.

Multiplicity - Collaborative e-mail responding

A platform for a team to respond to e-mails.

If you are getting lots of e-mails to a single account and want to collaborate on responses to them - this is the Drupal distro for you!

It allows some team members to be "responders", who can write messages but not send them. They must be approved and sent by other team members called "senders". All team members can comment on messages and responses, as well as make changes. Specific messages can be assigned to a specific user.

Still early in development!

Taxonomy Materialized Path

This is an implementation of materialized paths for taxonomies in Drupal. It serves only as an example of how this could be implemented.

Openlayers Quick Query

OpenLayers Quick Query: Have you tried using geofield with openlayers_views and a map with 5000 nodes? No? I have and the result is: 280 MB, 2 min load time and all nodes are loaded into memory. But slow is not the entity_load, but the field_attach. With this short module and some custom code you can easily make your layers fast again:

Example


function hook_openlayers_quick_query_info($view) {
  if ($view->name == 'my_map') {

    // Add wkt field information
    $info['wkt_field'] = 'field_geolocation';

    // Add needed fields
    $info['fields'][] = [
      'field_name' => 'field_geolocation'
    ];
    $info['fields'][] = [
      'field_name' => 'field_other',
      'additional_fields' => TRUE,
    ];

    return $info;
  }
}

For a complete example see openlayers_quick_query.api.php.

Explanation

Image Delta Formatter

image_delta_formatter.png

This module provides a custom formatter for imagefields, that allows the user to specify which values (deltas) should be displayed.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained