function context_http_headers_context_registry in Context HTTP Headers 7
Implements hook_context_registry().
Make module compatible with context 3
File
- ./
context_http_headers.module, line 119 - Adds HTTP Header reaction to Context
Code
function context_http_headers_context_registry() {
$registry['reactions'] = array(
'http_header' => array(
'title' => t('HTTP Headers'),
'plugin' => 'context_reaction_http_header',
),
);
return $registry;
}