class context_condition_user in Context 6.3
Same name and namespace in other branches
- 6 plugins/context_condition_user.inc \context_condition_user
- 7.3 plugins/context_condition_user.inc \context_condition_user
Expose current user role as a context condition.
Hierarchy
- class \context_condition
- class \context_condition_user
Expanded class hierarchy of context_condition_user
2 string references to 'context_condition_user'
- _context_context_plugins in ./
context.plugins.inc - Context plugins.
- _context_context_registry in ./
context.plugins.inc - Context registry.
File
- plugins/
context_condition_user.inc, line 6
View source
class context_condition_user extends context_condition {
function condition_values() {
$values = array();
foreach (user_roles() as $rid => $role_name) {
if ($rid == DRUPAL_ANONYMOUS_RID) {
$values['anonymous user'] = check_plain($role_name);
}
elseif ($rid == DRUPAL_AUTHENTICATED_RID) {
$values['authenticated user'] = check_plain($role_name);
}
else {
$values[$role_name] = check_plain($role_name);
}
}
return $values;
}
function execute($account) {
$roles = $account->roles;
foreach ($roles as $rid => $role) {
foreach ($this
->get_contexts($role) as $context) {
$this
->condition_met($context, $role);
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
function | Condition form. | 3 | |
context_condition:: |
function | Condition form submit handler. | 2 | |
context_condition:: |
function | Marks a context as having met this particular condition. | ||
context_condition:: |
function | Check whether this condition is used by any contexts. Can be used to prevent expensive condition checks from being triggered when no contexts use this condition. | ||
context_condition:: |
function | Context editor form for conditions. | 1 | |
context_condition:: |
function | Context editor form submit handler. | ||
context_condition:: |
function | Retrieve options from the context provided. | ||
context_condition:: |
function | Retrieve all contexts with the condition value provided. | ||
context_condition:: |
function | Options form. Provide additional options for your condition. | 2 | |
context_condition:: |
function | Options form submit handler. | ||
context_condition:: |
function | Settings form. Provide variable settings for your condition. | 1 | |
context_condition:: |
function | Clone our references when we're being cloned. | ||
context_condition:: |
function | Constructor. Do not override. | ||
context_condition_user:: |
function |
Condition values. Overrides context_condition:: |
||
context_condition_user:: |
function |