AlkantarClanX12
| Current Path : /var/www/clients/client1/web1/web/sites/all/modules/context/plugins/ |
| Current File : /var/www/clients/client1/web1/web/sites/all/modules/context/plugins/context_condition_sitewide.inc |
<?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);
}
}
}