You are here

function context_og_context_plugins in Context OG 7

Same name and namespace in other branches
  1. 6.3 context_og.module \context_og_context_plugins()
  2. 7.2 context_og.module \context_og_context_plugins()

File

./context_og.module, line 9

Code

function context_og_context_plugins() {
  $plugins = array();
  $plugins['context_og_condition_group_node'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'context_og') . '/plugins',
      'file' => 'context_og_condition_group_node.inc',
      'class' => 'context_og_condition_group_node',
      'parent' => 'context_condition',
    ),
  );
  $plugins['context_og_condition_group_type'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'context_og') . '/plugins',
      'file' => 'context_og_condition_group_type.inc',
      'class' => 'context_og_condition_group_type',
      'parent' => 'context_condition',
    ),
  );
  $plugins['context_og_reaction_set_group_context'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'context_og') . '/plugins',
      'file' => 'context_og_reaction_set_group_context.inc',
      'class' => 'context_og_reaction_set_group_context',
      'parent' => 'context_reaction',
    ),
  );
  return $plugins;
}