You are here

function context_reaction_theme_context_registry in Context Reaction: Theme 6.2

Same name and namespace in other branches
  1. 7 context_reaction_theme.module \context_reaction_theme_context_registry()

Registry hook for conditions & reactions.

File

./context_reaction_theme.module, line 41

Code

function context_reaction_theme_context_registry() {
  return array(
    'reactions' => array(
      'context_reaction_active_theme' => array(
        'title' => t('Active theme'),
        'plugin' => 'context_reaction_active_theme',
      ),
    ),
  );
}