class environment_context_condition in Environment 7
Same name and namespace in other branches
- 6 plugins/environment_context_condition.inc \environment_context_condition
Defines a context condition for the current environment state.
Hierarchy
- class \context_condition
Expanded class hierarchy of environment_context_condition
2 string references to 'environment_context_condition'
- environment_context_context_plugins in modules/
environment_context/ environment_context.module - Implements hook_context_plugins().
- environment_context_context_registry in modules/
environment_context/ environment_context.module - Implements hook_context_registry().
File
- modules/
environment_context/ plugins/ environment_context_condition.inc, line 10 - Defines a context condition for the current environment state.
View source
class environment_context_condition extends context_condition {
/**
* Override for context_condition::condition_values().
*/
function condition_values() {
return _environment_state_options_all();
}
/**
* Override for context_condition::execute().
*/
function execute($environment) {
if ($this
->condition_used()) {
// Workflow should be a unique key, $env is unique but not it's title.
foreach ($environment as $workflow => $env) {
foreach ($this
->get_contexts($env) as $context) {
$this
->condition_met($context, $env);
}
foreach ($this
->get_contexts($workflow) as $context) {
$this
->condition_met($context, $workflow);
}
}
}
}
}
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. Provide additional options for your condition. | 4 | |
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. | ||
environment_context_condition:: |
function |
Override for context_condition::condition_values(). Overrides context_condition:: |
||
environment_context_condition:: |
function | Override for context_condition::execute(). |