Considered feature-complete by its maintainers.

Zen Deli

This is a Zen sub-theme used for customization of forms for Deli.

Cache Heuristic

Cache Heuristic keeps track of which cache-entries are loaded a page, and bundles the cache loads by taking advantage of Cache->getMultiple(). Resulting in a reduced number of queries to the caching backend.

To enable, add to settings.php:

Drupal 6

NOTE: Requires Cache Backport

<?php
$conf['cache_backends'] = array(
  'sites/all/modules/cache_heuristic/cache_heuristic.inc'
);

$conf['cache_inc'] = 'sites/all/modules/cache_backport/cache.inc';
$conf['cache_default_class'] = 'HeuristicCache';
$conf['heuristic_cache_default_class'] = 'DrupalDatabaseCache';
?>


Drupal 7

<?php
$conf['cache_backends'] = array(
  'sites/all/modules/cache_heuristic/cache_heuristic.inc'
);

$conf['cache_default_class'] = 'HeuristicCache';
$conf['heuristic_cache_default_class'] = 'DrupalDatabaseCache';

// Example: Use memcach for the menu cache
$conf['heuristic_cache_class_cache_menu'] = 'MemCacheDrupal';
?>

Graceful caching

You can mix and match caching backends, e.g. adding graceful caching to the Drupal 7 example above using Cache Graceful


<?php
$conf['cache_backends'] = array(
'sites/all/modules/cache_graceful/cache_graceful.inc',
'sites/all/modules/cache_heuristic/cache_heuristic.inc',
);

Responder

Responder helps you create responsive, mobile-first themes in Drupal.

Views Autocomplete Filters

Views Autocomplete Filters - Search Suggestions

The Views Autocomplete Filters module extends views text fields filter with autocomplete functionality. The supported filters are:

  • "combine" - allows to search on multiple fields (core/views).
  • "search_api_fulltext" - fulltext search (search_api).
  • "search_api_text" - fulltext fields search (search_api).
  • "string" - allows to search on multiple fields (core/views).

Some benefits of the Views Autocomplete Filters are:

  • Quick find the desired entity by its title or unique text field
  • Find all entities that shares a common string value from a field. Example: All nodes that are created by a specific user name.

Just Share

A simple module to add Twitter and/or Facebook "like" buttons to every node.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only