function views_isotope_context_registry in Views Isotope (Deprecated) 7.2
Implements hook_context_registry().
File
- ./
views_isotope.module, line 95 - Load the isotope library and provide configuration and theme options.
Code
function views_isotope_context_registry() {
return array(
'reactions' => array(
'isotope' => array(
'title' => t('Isotope'),
'description' => t('Set an Isotope configuration.'),
'plugin' => 'isotope_reaction',
),
),
);
}