class tokenauth_context_condition_tokenauth in Token authentication 6
Same name and namespace in other branches
- 6.2 modules/tokenauth_context/plugins/tokenauth_context_condition_tokenauth.inc \tokenauth_context_condition_tokenauth
- 7 plugins/tokenauth_context_condition_tokenauth.inc \tokenauth_context_condition_tokenauth
Hierarchy
- class \tokenauth_context_condition_tokenauth extends \context_condition
Expanded class hierarchy of tokenauth_context_condition_tokenauth
2 string references to 'tokenauth_context_condition_tokenauth'
- tokenauth_context_plugins in ./
tokenauth.module - Implementation of hook_context_plugins().
- tokenauth_context_registry in ./
tokenauth.module - Implementation of hook_context_registry().
File
- 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);
}
}
}
}