class context_condition_node in Context 6.3
Same name and namespace in other branches
- 6 plugins/context_condition_node.inc \context_condition_node
- 7.3 plugins/context_condition_node.inc \context_condition_node
Expose node views/node forms of specific node types as a context condition.
Hierarchy
- class \context_condition
- class \context_condition_node
Expanded class hierarchy of context_condition_node
2 string references to 'context_condition_node'
- _context_context_plugins in ./
context.plugins.inc - Context plugins.
- _context_context_registry in ./
context.plugins.inc - Context registry.
File
- plugins/
context_condition_node.inc, line 21
View source
class context_condition_node extends context_condition {
function condition_values() {
$values = array();
foreach (node_get_types() as $type) {
$values[$type->type] = check_plain($type->name);
}
return $values;
}
function options_form($context) {
$defaults = $this
->fetch_from_context($context, 'options');
return array(
'node_form' => array(
'#title' => t('Set on node form'),
'#type' => 'select',
'#options' => array(
CONTEXT_NODE_VIEW => t('No'),
CONTEXT_NODE_FORM => t('Yes'),
CONTEXT_NODE_FORM_ONLY => t('Only on node form'),
),
'#description' => t('Set this context on node forms'),
'#default_value' => isset($defaults['node_form']) ? $defaults['node_form'] : TRUE,
),
);
}
function execute($node, $op) {
foreach ($this
->get_contexts($node->type) as $context) {
// Check the node form option.
$options = $this
->fetch_from_context($context, 'options');
if ($op === 'form') {
$options = $this
->fetch_from_context($context, 'options');
if (!empty($options['node_form']) && in_array($options['node_form'], array(
CONTEXT_NODE_FORM,
CONTEXT_NODE_FORM_ONLY,
))) {
$this
->condition_met($context, $node->type);
}
}
elseif (empty($options['node_form']) || $options['node_form'] != CONTEXT_NODE_FORM_ONLY) {
$this
->condition_met($context, $node->type);
}
}
}
}
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. | 1 | |
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. | ||
context_condition:: |
function | Options form submit handler. | ||
context_condition:: |
function | Settings form. Provide variable settings for your condition. | 1 | |
context_condition:: |
function | Clone our references when we're being cloned. | ||
context_condition:: |
function | Constructor. Do not override. | ||
context_condition_node:: |
function |
Condition values. Overrides context_condition:: |
1 | |
context_condition_node:: |
function | 2 | ||
context_condition_node:: |
function |
Options form. Provide additional options for your condition. Overrides context_condition:: |