function context_no_title_context_registry in Context No Title 7
Implements hook_context_registry().
File
- ./
context_no_title.module, line 27 - Define plugin and activate.
Code
function context_no_title_context_registry() {
return array(
'reactions' => array(
'no_title' => array(
'title' => t('No Title in Page'),
'description' => t('Remove the title from the page template'),
'plugin' => 'context_no_title_reaction',
),
),
);
}