You are here

vocabulary.inc in Chaos Tool Suite (ctools) 6

Same filename and directory in other branches
  1. 7 plugins/contexts/vocabulary.inc

Plugin to provide a vocabulary context

File

plugins/contexts/vocabulary.inc
View source
<?php

/**
 * @file
 *
 * Plugin to provide a vocabulary context
 */

/**
 * Plugins are described by creating a $plugin array which will be used
 * by the system that includes this file.
 */
$plugin = array(
  'title' => t("Taxonomy vocabulary"),
  'description' => t('A single taxonomy vocabulary object.'),
  'context' => 'ctools_context_create_vocabulary',
  'settings form' => 'ctools_context_vocabulary_settings_form',
  'settings form validate' => 'ctools_context_vocabulary_settings_form_validate',
  'keyword' => 'vocabulary',
  'context name' => 'vocabulary',
);

/**
 * It's important to remember that $conf is optional here, because contexts
 * are not always created from the UI.
 */
function ctools_context_create_vocabulary($empty, $data = NULL, $conf = FALSE) {
  $context = new ctools_context('vocabulary');
  $context->plugin = 'vocabulary';
  if ($empty) {
    return $context;
  }
  if ($conf && isset($data['vid'])) {
    $data = taxonomy_vocabulary_load($data['vid']);
  }
  if (!empty($data)) {
    $context->data = $data;
    $context->title = $data->name;
    $context->argument = $data->vid;
    return $context;
  }
}
function ctools_context_vocabulary_settings_form($conf) {
  $options = array();
  foreach (taxonomy_get_vocabularies() as $vid => $vocabulary) {
    $options[$vid] = $vocabulary->name;
  }
  $form['vid'] = array(
    '#title' => t('Vocabulary'),
    '#type' => 'select',
    '#options' => $options,
    '#default_value' => isset($conf['vid']) ? $conf['vid'] : array(),
    '#prefix' => '<div class="clear-block">',
    '#suffix' => '</div>',
    '#description' => t('Select the vocabulary for this form.'),
  );
  return $form;
}

Functions

Namesort descending Description
ctools_context_create_vocabulary It's important to remember that $conf is optional here, because contexts are not always created from the UI.
ctools_context_vocabulary_settings_form