function isotope_context_registry in Isotope (with Masonry and Packery) 7.2
Same name and namespace in other branches
- 7 isotope.module \isotope_context_registry()
Implements hook_context_registry().
File
- ./
isotope.module, line 95 - Load the isotope library and provide configuration and theme options.
Code
function isotope_context_registry() {
return array(
'reactions' => array(
'isotope' => array(
'title' => t('Isotope'),
'description' => t('Set an Isotope configuration.'),
'plugin' => 'isotope_reaction',
),
),
);
}