You are here

class tokenauth_context_condition_tokenauth in Token authentication 6.2

Same name and namespace in other branches
  1. 6 plugins/tokenauth_context_condition_tokenauth.inc \tokenauth_context_condition_tokenauth
  2. 7 plugins/tokenauth_context_condition_tokenauth.inc \tokenauth_context_condition_tokenauth

Hierarchy

Expanded class hierarchy of tokenauth_context_condition_tokenauth

2 string references to 'tokenauth_context_condition_tokenauth'
tokenauth_context_context_plugins in modules/tokenauth_context/tokenauth_context.module
Implementation of hook_context_plugins().
tokenauth_context_context_registry in modules/tokenauth_context/tokenauth_context.module
Implementation of hook_context_registry().

File

modules/tokenauth_context/plugins/tokenauth_context_condition_tokenauth.inc, line 3

View source
class tokenauth_context_condition_tokenauth extends context_condition {
  function condition_values() {
    return array(
      1 => t('Did not use Token Authentication to log in'),
      2 => t('Used Token Authentication to log in'),
    );
  }
  function condition_form($context) {
    $form = parent::condition_form($context);
    $default = $this
      ->fetch_from_context($context, 'values');
    $form['#type'] = 'radios';
    $form['#default_value'] = reset($default);
    return $form;
  }
  function condition_form_submit($values) {
    return array(
      $values,
    );
  }
  function execute($auth_mode) {
    if ($this
      ->condition_used()) {

      // Avoid '0' looking like empty selection.
      $auth_mode += 1;
      foreach ($this
        ->get_contexts($auth_mode) as $context) {
        $this
          ->condition_met($context, $auth_mode);
      }
    }
  }

}

Members