You are here

class custompage_context_condition_alias in Custom Page 7

Same name and namespace in other branches
  1. 6 plugins/custompage_context_condition_alias.inc \custompage_context_condition_alias

Expose node views/node forms of specific node types as a context condition.

Hierarchy

Expanded class hierarchy of custompage_context_condition_alias

2 string references to 'custompage_context_condition_alias'
custompage_context_plugins in ./custompage.module
Make module compatible with context 3 Implement hook_context_plugins().
custompage_context_registry in ./custompage.module
Make module compatible with context 3 Implement hook_context_registry().

File

plugins/custompage_context_condition_alias.inc, line 6

View source
class custompage_context_condition_alias extends context_condition {
  function condition_values() {
    $values = _custompage_context_get_custompages();
    return $values;
  }
  function execute($path_key) {
    if (empty($path_key)) {
      return;
    }
    foreach (context_enabled_contexts() as $context) {
      if ($paths = $this
        ->fetch_from_context($context, 'values')) {
        if (in_array($path_key, $paths)) {
          $this
            ->condition_met($context, $path_key);
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
context_condition::$description property
context_condition::$plugin property
context_condition::$title property
context_condition::$values property
context_condition::condition_form function Condition form. 3
context_condition::condition_form_submit function Condition form submit handler. 2
context_condition::condition_met function Marks a context as having met this particular condition.
context_condition::condition_used 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::editor_form function Context editor form for conditions. 2
context_condition::editor_form_submit function Context editor form submit handler.
context_condition::fetch_from_context function Retrieve options from the context provided.
context_condition::get_contexts function Retrieve all contexts with the condition value provided. 2
context_condition::options_form function Options form. Provide additional options for your condition. 4
context_condition::options_form_submit function Options form submit handler.
context_condition::settings_form function Settings form. Provide variable settings for your condition.
context_condition::__clone function Clone our references when we're being cloned.
context_condition::__construct function Constructor. Do not override.
custompage_context_condition_alias::condition_values function Condition values. Overrides context_condition::condition_values
custompage_context_condition_alias::execute function