function isotope_context_plugins in Isotope (with Masonry and Packery) 7.2
Same name and namespace in other branches
- 7 isotope.module \isotope_context_plugins()
Implements hook_context_plugins().
File
- ./
isotope.module, line 79 - Load the isotope library and provide configuration and theme options.
Code
function isotope_context_plugins() {
$plugins = array();
$plugins['isotope_reaction'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'isotope') . '/plugins/context',
'file' => 'isotope_reaction.inc',
'class' => 'isotope_reaction',
'parent' => 'context_reaction',
),
);
return $plugins;
}