You are here

function backstretch_context_registry in Backstretch 7.2

Same name and namespace in other branches
  1. 7 backstretch.module \backstretch_context_registry()

Implements hook_context_registry().

File

./backstretch.context.inc, line 11
Contains context integration.

Code

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