ImageCache Punch

Component type

module

Categories

Maintenance status

Development status

Downloads

1995

Component created

Component changed

When using modules that allow you to focus or crop images you may find that the image dissapears or the changes are not immediately visible to everyone. This can be caused by other external caching such as Varnish, or browser caching outside of immediate control, because by default ImageCache does not generate a new URL for each iteration of the image. Depending on how your environment is configured the old rendering may stay in browsers for weeks, causing much confusion for your content editors.

XMLRPC Page Load

Component type

module

Maintenance status

Development status

Downloads

260

Component created

Component changed

xmlrpc_page_load Provides a simple XMLRPC call that can simulate a page being accessed as a certain user. This can be used in two ways:
To simulate accessing a page when other mechanisms prevent a traditional user login
To seed caches by having apache / nginx handle the request as if someone actually accessed the site

Image default image formatter

Component type

module

Maintenance status

Development status

Downloads

274

Component created

Component changed

If you want to set up default image separately for each view mode at manage display setting page. this module is suitable for you.

Settings you had set at manage display setting page would overwrite the same setting in field instance.

Known issues:

1. When you switch field formatter in formatter list select, Please click Save button at first to avoid some errors when set up setting.

Taxonomy Term Node

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

The Drupal search mechanism is targeted at finding node content. In some use cases taxonomy descriptions contain content that is not indexed by the Drupal search mechanism. This tiny module allows a site builder to create nodes that contain as their content a single associated taxonomy description and therefore expose the content to the search mechanism.

Views Rest Feed

Component type

module

Categories

Maintenance status

Development status

Downloads

5551

Component created

Component changed

This module adds a new "Rest Export Feed" view display type, allowing "REST Export" displays to be attached to other Views displays. This behaves in the same way as the core "Feed" display type, which permits the attachment of RSS feeds to other displays (among other things).

BlockAdBlock

Component type

module

Maintenance status

Development status

Component created

Component changed

Exposes BlockAdBlock plugin through the Libraries API. This is intended to be used by other modules or by any custom code you write.

Usage

Recommended usage is in the #attached property of a render array:

function mymodule_preprocess_html(&$variables) {
  $variables['page']['page_bottom']['#attached']['libraries_load'][] = array('blockadblock');
}

Alternate usage is via libraries_load():