class context_condition_user_page in Context 7.3
Same name and namespace in other branches
- 6.3 plugins/context_condition_user_page.inc \context_condition_user_page
- 6 plugins/context_condition_user_page.inc \context_condition_user_page
Expose user pages as a context condition.
Hierarchy
- class \context_condition
- class \context_condition_user_page
Expanded class hierarchy of context_condition_user_page
2 string references to 'context_condition_user_page'
- _context_context_plugins in ./
context.plugins.inc - Context plugins.
- _context_context_registry in ./
context.plugins.inc - Context registry.
File
- plugins/
context_condition_user_page.inc, line 6
View source
class context_condition_user_page extends context_condition {
function condition_values() {
$values = array();
$values['view'] = t('User profile');
$values['form'] = t('User account form');
$values['register'] = t('Registration form');
return $values;
}
function options_form($context) {
$defaults = $this
->fetch_from_context($context, 'options');
return array(
'mode' => array(
'#title' => t('Active for'),
'#type' => 'select',
'#options' => array(
'all' => t('Any user'),
'current' => t('Only the current user'),
'other' => t('Only other users'),
),
'#default_value' => isset($defaults['mode']) ? $defaults['mode'] : 'all',
),
);
}
function execute($account, $op) {
global $user;
foreach ($this
->get_contexts($op) as $context) {
if ($op === 'register') {
$this
->condition_met($context);
}
else {
$options = $this
->fetch_from_context($context, 'options');
$mode = !empty($options['mode']) ? $options['mode'] : 'all';
switch ($options['mode']) {
case 'current':
if ($account->uid == $user->uid) {
$this
->condition_met($context);
}
break;
case 'other':
if ($account->uid != $user->uid) {
$this
->condition_met($context);
}
break;
case 'all':
default:
$this
->condition_met($context);
break;
}
}
}
}
}
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. | 2 | |
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. | 2 | |
context_condition:: |
function | Options form submit handler. | ||
context_condition:: |
function | Settings form. Provide variable settings for your condition. | ||
context_condition:: |
function | Clone our references when we're being cloned. | ||
context_condition:: |
function | Constructor. Do not override. | ||
context_condition_user_page:: |
function |
Condition values. Overrides context_condition:: |
||
context_condition_user_page:: |
function | |||
context_condition_user_page:: |
function |
Options form. Provide additional options for your condition. Overrides context_condition:: |