class supersized_context_condition in Supersized 7
Same name and namespace in other branches
- 8 supersized_context/supersized_context_condition.inc \supersized_context_condition
@file Condition class of supersized.
Determine if there are any Supersized assigned.
Hierarchy
- class \context_condition
- class \supersized_context_condition
Expanded class hierarchy of supersized_context_condition
2 string references to 'supersized_context_condition'
- supersized_context_context_plugins in supersized_context/
supersized_context.module - Implements hook_context_plugins().
- supersized_context_context_registry in supersized_context/
supersized_context.module - Implements hook_context_registry().
File
- supersized_context/
supersized_context_condition.inc, line 10 - Condition class of supersized.
View source
class supersized_context_condition extends context_condition {
/**
* Override condition_values().
*/
function condition_values() {
return array(
1 => t('Active if no supersized assigned either in the node or by context.'),
);
}
/**
* Override editor_form().
*/
function editor_form($context = NULL) {
$form = parent::editor_form($context);
$form[1]['#title'] = t('Active if no supersized assigned either in the node or by context.');
$form['#weight'] = -10;
return $form;
}
/**
* Override execute().
*/
function execute() {
foreach ($this
->get_contexts() as $context) {
$node = NULL;
// Get node by page.
if (empty($node)) {
if (arg(2) !== 'edit') {
$node = menu_get_object();
}
}
if ($node) {
$field = supersized_get_supersized_field($node);
$supersized = $field['items'];
if (empty($supersized)) {
$this
->condition_met($context);
}
}
else {
$this
->condition_met($context);
}
}
}
}
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 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. | ||
supersized_context_condition:: |
function |
Override condition_values(). Overrides context_condition:: |
||
supersized_context_condition:: |
function |
Override editor_form(). Overrides context_condition:: |
||
supersized_context_condition:: |
function | Override execute(). |