You are here

function backstretch_context_registry in Backstretch 7

Same name and namespace in other branches
  1. 7.2 backstretch.context.inc \backstretch_context_registry()

Implements hook_context_registry().

File

./backstretch.module, line 149

Code

function backstretch_context_registry() {
  return array(
    'reactions' => array(
      'backstretch' => array(
        'title' => t('Backstretch'),
        'plugin' => 'backstretch',
      ),
    ),
  );
}