summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.tokens.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-19 20:19:37 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-19 20:19:37 +0000
commit40003c8307ca64da0cd1ab0ee4d87f4812be8088 (patch)
tree05aa427a035a991cc82b68e42d5eb2282273bac4 /modules/taxonomy/taxonomy.tokens.inc
parente998857eb8a5ef4d2ebe381a57c19b1b355fe4ef (diff)
downloadbrdo-40003c8307ca64da0cd1ab0ee4d87f4812be8088.tar.gz
brdo-40003c8307ca64da0cd1ab0ee4d87f4812be8088.tar.bz2
- Patch #113614 by eaton, fago, et al: add centralized token/placeholder subsituation to core.
Diffstat (limited to 'modules/taxonomy/taxonomy.tokens.inc')
-rw-r--r--modules/taxonomy/taxonomy.tokens.inc189
1 files changed, 189 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.tokens.inc b/modules/taxonomy/taxonomy.tokens.inc
new file mode 100644
index 000000000..fc321700f
--- /dev/null
+++ b/modules/taxonomy/taxonomy.tokens.inc
@@ -0,0 +1,189 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Builds placeholder replacement tokens for taxonomy terms and vocabularies.
+ */
+
+/**
+ * Implement hook_token_info().
+ */
+function taxonomy_token_info() {
+ $types['term'] = array(
+ 'name' => t("Taxonomy terms"),
+ 'description' => t("Tokens related to taxonomy terms."),
+ 'needs-data' => 'term',
+ );
+ $types['vocabulary'] = array(
+ 'name' => t("Vocabularies"),
+ 'description' => t("Tokens related to taxonomy vocabularies."),
+ 'needs-data' => 'vocabulary',
+ );
+
+ // Taxonomy term related variables.
+ $term['tid'] = array(
+ 'name' => t("Term ID"),
+ 'description' => t("The unique ID of the taxonomy term."),
+ );
+ $term['vid'] = array(
+ 'name' => t("Vocabulary ID"),
+ 'description' => t("The unique ID of the vocabulary the term belongs to."),
+ );
+ $term['name'] = array(
+ 'name' => t("Name"),
+ 'description' => t("The name of the taxonomy term."),
+ );
+ $term['description'] = array(
+ 'name' => t("Description"),
+ 'description' => t("The optional description of the taxonomy term."),
+ );
+ $term['node-count'] = array(
+ 'name' => t("Node count"),
+ 'description' => t("The number of nodes tagged with the taxonomy term."),
+ );
+ $term['url'] = array(
+ 'name' => t("URL"),
+ 'description' => t("The URL of the taxonomy term."),
+ );
+
+ // Taxonomy vocabulary related variables.
+ $vocabulary['vid'] = array(
+ 'name' => t("Vocabulary ID"),
+ 'description' => t("The unique ID of the taxonomy vocabulary."),
+ );
+ $vocabulary['name'] = array(
+ 'name' => t("Name"),
+ 'description' => t("The name of the taxonomy vocabulary."),
+ );
+ $vocabulary['description'] = array(
+ 'name' => t("Description"),
+ 'description' => t("The optional description of the taxonomy vocabulary."),
+ );
+ $vocabulary['node-count'] = array(
+ 'name' => t("Node count"),
+ 'description' => t("The number of nodes tagged with terms belonging to the taxonomy vocabulary."),
+ );
+ $vocabulary['term-count'] = array(
+ 'name' => t("Node count"),
+ 'description' => t("The number of terms belonging to the taxonomy vocabulary."),
+ );
+
+ // Chained tokens for taxonomies
+ $term['vocabulary'] = array(
+ 'name' => t("Vocabulary"),
+ 'description' => t("The vocabulary the taxonomy term belongs to."),
+ 'type' => 'vocabulary',
+ );
+ $term['parent'] = array(
+ 'name' => t("Parent term"),
+ 'description' => t("The parent term of the taxonomy term, if one exists."),
+ 'type' => 'term',
+ );
+
+ return array(
+ 'types' => $types,
+ 'tokens' => array(
+ 'term' => $term,
+ 'vocabulary' => $vocabulary,
+ ),
+ );
+}
+
+/**
+ * Implement hook_tokens().
+ */
+function taxonomy_tokens($type, $tokens, array $data = array(), array $options = array()) {
+ $replacements = array();
+ $sanitize = !empty($options['sanitize']);
+
+ if ($type == 'term' && !empty($data['term'])) {
+ $term = $data['term'];
+
+ foreach ($tokens as $name => $original) {
+ switch ($name) {
+ case 'tid':
+ $replacements[$original] = $term->tid;
+ break;
+
+ case 'vid':
+ $replacements[$original] = $term->vid;
+ break;
+
+ case 'name':
+ $replacements[$original] = $sanitize ? check_plain($term->name) : $term->name;
+ break;
+
+ case 'description':
+ $replacements[$original] = $sanitize ? filter_xss($term->description) : $term->description;
+ break;
+
+ case 'url':
+ $replacements[$original] = url(taxonomy_term_path($term), array('absolute' => TRUE));
+ break;
+
+ case 'node-count':
+ $sql = "SELECT COUNT (1) FROM {taxonomy_term_node} tn WHERE tn.tid = :tid";
+ $count = db_result(db_query($sql, array(':tid' => $term->tid)));
+ $replacements[$original] = $count;
+ break;
+
+ case 'vocabulary':
+ $vocabulary = taxonomy_vocabulary_load($term->vid);
+ $replacements[$original] = check_plain($vocabulary->name);
+ break;
+
+ case 'parent':
+ $parents = taxonomy_get_parents($term->tid);
+ $parent = array_pop($parents);
+ $replacements[$original] = check_plain($parent->name);
+ break;
+ }
+ }
+
+ if ($vocabulary_tokens = token_find_with_prefix($tokens, 'vocabulary')) {
+ $vocabulary = taxonomy_vocabulary_load($term->vid);
+ $replacements += token_generate('vocabulary', $vocabulary_tokens, array('vocabulary' => $vocabulary), $options);
+ }
+
+ if ($vocabulary_tokens = token_find_with_prefix($tokens, 'parent')) {
+ $parents = taxonomy_get_parents($term->tid);
+ $parent = array_pop($parents);
+ $replacements += token_generate('term', $vocabulary_tokens, array('term' => $parent), $options);
+ }
+ }
+
+ elseif ($type == 'vocabulary' && !empty($data['vocabulary'])) {
+ $vocabulary = $data['vocabulary'];
+
+ foreach ($tokens as $name => $original) {
+ switch ($name) {
+ case 'vid':
+ $replacements[$original] = $vocabulary->vid;
+ break;
+
+ case 'name':
+ $replacements[$original] = $sanitize ? check_plain($vocabulary->name) : $vocabulary->name;
+ break;
+
+ case 'description':
+ $replacements[$original] = $sanitize ? filter_xss($vocabulary->description) : $vocabulary->description;
+ break;
+
+ case 'term-count':
+ $sql = "SELECT COUNT (1) FROM {taxonomy_term_data} td WHERE td.vid = :vid";
+ $count = db_result(db_query($sql, array(':vid' => $vocabulary->vid)));
+ $replacements[$original] = $count;
+ break;
+
+ case 'node-count':
+ $sql = "SELECT COUNT (1) FROM {taxonomy_term_node} tn LEFT JOIN {taxonomy_term_data} td ON tn.tid = td.tid WHERE td.vid = :vid";
+ $count = db_result(db_query($sql, array(':vid' => $vocabulary->vid)));
+ $replacements[$original] = $count;
+ break;
+ }
+ }
+ }
+
+ return $replacements;
+}