You are here

context_condition_node_taxonomy.inc in Context 6

File

plugins/context_condition_node_taxonomy.inc
View source
<?php

/**
 * Expose node taxonomy terms as a context condition.
 */
class context_condition_node_taxonomy extends context_condition_node {
  function condition_values() {
    $values = array();
    if (module_exists('taxonomy')) {
      foreach (taxonomy_get_vocabularies() as $vocab) {
        if (empty($vocab->tags)) {
          foreach (taxonomy_get_tree($vocab->vid) as $term) {
            $values[$term->tid] = check_plain($term->name);
          }
        }
      }
    }
    return $values;
  }
  function condition_form($context) {
    $form = parent::condition_form($context);
    $form['#type'] = 'select';
    $form['#size'] = 12;
    $form['#multiple'] = TRUE;
    $form['#options'] = taxonomy_form_all();
    return $form;
  }
  function execute($node, $op) {
    if ($this
      ->condition_used() && !empty($node->taxonomy)) {
      foreach ($node->taxonomy as $term) {
        foreach ($this
          ->get_contexts($term->tid) as $context) {

          // Check the node form option.
          if ($op === 'form') {
            $options = $this
              ->fetch_from_context($context, 'options');
            if (!empty($options['node_form'])) {
              $this
                ->condition_met($context, $term->tid);
            }
          }
          else {
            $this
              ->condition_met($context, $term->tid);
          }
        }
      }
    }
  }

}

Classes

Namesort descending Description
context_condition_node_taxonomy Expose node taxonomy terms as a context condition.