You are here

function safeword_context_context_registry in Safeword 7

Same name and namespace in other branches
  1. 8 safeword_context/safeword_context.module \safeword_context_context_registry()

Implements hook_context_registry().

File

safeword_context/safeword_context.module, line 22

Code

function safeword_context_context_registry() {
  $registry['conditions']['safeword'] = array(
    'title' => t('Safeword'),
    'plugin' => 'safeword_context_condition',
  );
  return $registry;
}