You are here

function safeword_context_context_plugins in Safeword 7

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

Implements hook_context_plugins().

File

safeword_context/safeword_context.module, line 6

Code

function safeword_context_context_plugins() {
  $plugins['safeword_context_condition'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'safeword_context'),
      'file' => 'safeword_context_condition.inc',
      'class' => 'safeword_context_condition',
      'parent' => 'context_condition',
    ),
  );
  return $plugins;
}