context_condition_context.inc in Context 7.3
File
plugins/context_condition_context.inc
View source
<?php
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(array_keys(context_active_contexts()), $values)) {
$this
->condition_met($context);
}
}
}
if ($active_contexts != array_keys(context_active_contexts())) {
$this
->execute();
}
}
}
function get_contexts($value = NULL) {
$map = context_condition_map();
$map = isset($map[$this->plugin]) ? $map[$this->plugin] : array();
$contexts = array();
krsort($map);
foreach ($map as $key => $submap) {
if (substr($key, 0, 1) == "~") {
$key = substr($key, 1);
}
if (!isset($contexts[$key])) {
$context = context_load($key);
if ($context) {
$contexts[$context->name] = $context;
}
}
}
foreach ($map as $key => $submap) {
foreach ($submap as $name) {
if (!isset($contexts[$name])) {
$context = context_load($name);
$contexts[$context->name] = $context;
}
}
}
return $contexts;
}
}