popsu-d7/sites/all/modules/context/plugins/context_condition_sitewide.inc
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

24 lines
524 B
PHP

<?php
/**
* Simple sitewide context, always present.
*/
class context_condition_sitewide extends context_condition {
function condition_values() {
return array(1 => t('Always active'));
}
function editor_form($context = NULL) {
$form = parent::editor_form($context);
$form[1]['#title'] = t('Always active');
$form['#weight'] = -10;
return $form;
}
function execute($value) {
foreach ($this->get_contexts($value) as $context) {
$this->condition_met($context, $value);
}
}
}