function backstretch_context_plugins in Backstretch 7
Same name and namespace in other branches
- 7.2 backstretch.context.inc \backstretch_context_plugins()
Implmenets hook_context_plugins().
File
- ./
backstretch.module, line 163
Code
function backstretch_context_plugins() {
$plugins = array();
$plugins['backstretch'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'backstretch') . '/plugins',
'file' => 'backstretch_context_reaction_backstretch.inc',
'class' => 'backstretch_context_reaction_backstretch',
'parent' => 'context_reaction',
),
);
return $plugins;
}