class context_condition_context in Context 6.3
Same name and namespace in other branches
- 6 plugins/context_condition_context.inc \context_condition_context
- 7.3 plugins/context_condition_context.inc \context_condition_context
Expose active contexts as a context condition.
Hierarchy
- class \context_condition
- class \context_condition_path
- class \context_condition_context
- class \context_condition_path
Expanded class hierarchy of context_condition_context
2 string references to 'context_condition_context'
- _context_context_plugins in ./
context.plugins.inc - Context plugins.
- _context_context_registry in ./
context.plugins.inc - Context registry.
File
- plugins/
context_condition_context.inc, line 6
View source
class context_condition_context extends context_condition_path {
function execute() {
if ($this
->condition_used()) {
$active_contexts = array_keys(context_active_contexts());
foreach ($this
->get_contexts() as $context) {
if (!in_array($context->name, $active_contexts, TRUE) && ($values = $this
->fetch_from_context($context, 'values'))) {
if ($this
->match($active_contexts, $values)) {
$this
->condition_met($context);
}
}
}
// If the list of active contexts has changed, we need to recurse.
if ($active_contexts != array_keys(context_active_contexts())) {
$this
->execute();
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
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_context:: |
function |
Execute. Overrides context_condition_path:: |
||
context_condition_path:: |
function |
Condition form. Overrides context_condition:: |
||
context_condition_path:: |
function |
Condition form submit handler. Overrides context_condition:: |
||
context_condition_path:: |
function |
Omit condition values. We will provide a custom input form for our conditions. Overrides context_condition:: |
||
context_condition_path:: |
protected | function | Match the subject against a set of regex patterns. Similar to drupal_match_path() but also handles negation through the use of the ~ character. |