function isotope_context_plugins in Isotope (with Masonry and Packery) 7
Same name and namespace in other branches
- 7.2 isotope.module \isotope_context_plugins()
Implements hook_context_plugins().
File
- ./
isotope.module, line 146 - Defines the default hooks that the history js module implements.
Code
function isotope_context_plugins() {
$plugins = array();
$plugins['isotope_reaction'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'isotope') . '/plugins',
'file' => 'isotope_reaction.inc',
'class' => 'isotope_reaction',
'parent' => 'context_reaction',
),
);
return $plugins;
}