You are here

function masonry_context_context_registry in Masonry API 7

Implements hook_context_registry().

File

masonry_context/masonry_context.module, line 37
Provides a Context reacton plugin to display content in a jQuery Masonry grid.

Code

function masonry_context_context_registry() {
  return array(
    'reactions' => array(
      'masonry' => array(
        'title' => t('Masonry'),
        'plugin' => 'context_reaction_masonry',
      ),
    ),
  );
}