You are here

function tokenauth_context_context_plugins in Token authentication 6.2

Implementation of hook_context_plugins().

File

modules/tokenauth_context/tokenauth_context.module, line 44
Code for the Token Authentication Context Integration module.

Code

function tokenauth_context_context_plugins() {
  $plugins = array();
  $plugins['tokenauth_context_condition_tokenauth'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'tokenauth_context') . '/plugins',
      'file' => 'tokenauth_context_condition_tokenauth.inc',
      'class' => 'tokenauth_context_condition_tokenauth',
      'parent' => 'context_condition',
    ),
  );
  return $plugins;
}