You are here

function isotope_context_registry in Isotope (with Masonry and Packery) 7

Same name and namespace in other branches
  1. 7.2 isotope.module \isotope_context_registry()

Implements hook_context_registry().

File

./isotope.module, line 162
Defines the default hooks that the history js module implements.

Code

function isotope_context_registry() {
  return array(
    'reactions' => array(
      'isotope' => array(
        'title' => t('Isotope'),
        'description' => t('Set a basic Isotope configuration.'),
        'plugin' => 'isotope_reaction',
      ),
    ),
  );
}