function views_isotope_context_plugins in Views Isotope (Deprecated) 7.2
Implements hook_context_plugins().
File
- ./
views_isotope.module, line 79 - Load the isotope library and provide configuration and theme options.
Code
function views_isotope_context_plugins() {
$plugins = array();
$plugins['isotope_reaction'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'views_isotope') . '/plugins/context',
'file' => 'views_isotope_reaction.inc',
'class' => 'isotope_reaction',
'parent' => 'context_reaction',
),
);
return $plugins;
}