You are here

function views_isotope_context_registry in Brainstorm profile 7

Implements hook_context_registry().

File

modules/custom/views_isotope/views_isotope.module, line 96
Load the isotope library and provide configuration and theme options.

Code

function views_isotope_context_registry() {
  return [
    'reactions' => [
      'isotope' => [
        'title' => t('Isotope'),
        'description' => t('Set an Isotope configuration.'),
        'plugin' => 'IsotopeReaction',
      ],
    ],
  ];
}