views_plugin_argument_default_taxonomy_tid.inc 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. /**
  3. * @file
  4. * Definition of views_plugin_argument_default_taxonomy_tid.
  5. */
  6. /**
  7. * Taxonomy tid default argument.
  8. */
  9. class views_plugin_argument_default_taxonomy_tid extends views_plugin_argument_default {
  10. function init(&$view, &$argument, $options) {
  11. parent::init($view, $argument, $options);
  12. // Convert legacy vids option to machine name vocabularies.
  13. if (!empty($this->options['vids'])) {
  14. $vocabularies = taxonomy_get_vocabularies();
  15. foreach ($this->options['vids'] as $vid) {
  16. if (isset($vocabularies[$vid], $vocabularies[$vid]->machine_name)) {
  17. $this->options['vocabularies'][$vocabularies[$vid]->machine_name] = $vocabularies[$vid]->machine_name;
  18. }
  19. }
  20. }
  21. }
  22. function option_definition() {
  23. $options = parent::option_definition();
  24. $options['term_page'] = array('default' => TRUE, 'bool' => TRUE);
  25. $options['node'] = array('default' => FALSE, 'bool' => TRUE);
  26. $options['anyall'] = array('default' => ',');
  27. $options['limit'] = array('default' => FALSE, 'bool' => TRUE);
  28. $options['vocabularies'] = array('default' => array());
  29. return $options;
  30. }
  31. function options_form(&$form, &$form_state) {
  32. $form['term_page'] = array(
  33. '#type' => 'checkbox',
  34. '#title' => t('Load default filter from term page'),
  35. '#default_value' => $this->options['term_page'],
  36. );
  37. $form['node'] = array(
  38. '#type' => 'checkbox',
  39. '#title' => t('Load default filter from node page, that\'s good for related taxonomy blocks'),
  40. '#default_value' => $this->options['node'],
  41. );
  42. $form['limit'] = array(
  43. '#type' => 'checkbox',
  44. '#title' => t('Limit terms by vocabulary'),
  45. '#default_value'=> $this->options['limit'],
  46. '#process' => array('form_process_checkbox', 'ctools_dependent_process'),
  47. '#dependency' => array(
  48. 'edit-options-argument-default-taxonomy-tid-node' => array(1),
  49. ),
  50. );
  51. $options = array();
  52. $vocabularies = taxonomy_get_vocabularies();
  53. foreach ($vocabularies as $voc) {
  54. $options[$voc->machine_name] = check_plain($voc->name);
  55. }
  56. $form['vocabularies'] = array(
  57. '#prefix' => '<div><div id="edit-options-vids">',
  58. '#suffix' => '</div></div>',
  59. '#type' => 'checkboxes',
  60. '#title' => t('Vocabularies'),
  61. '#options' => $options,
  62. '#default_value' => $this->options['vocabularies'],
  63. '#process' => array('form_process_checkboxes', 'ctools_dependent_process'),
  64. '#dependency' => array(
  65. 'edit-options-argument-default-taxonomy-tid-limit' => array(1),
  66. 'edit-options-argument-default-taxonomy-tid-node' => array(1),
  67. ),
  68. );
  69. $form['anyall'] = array(
  70. '#type' => 'radios',
  71. '#title' => t('Multiple-value handling'),
  72. '#default_value'=> $this->options['anyall'],
  73. '#process' => array('form_process_radios', 'ctools_dependent_process'),
  74. '#options' => array(
  75. ',' => t('Filter to items that share all terms'),
  76. '+' => t('Filter to items that share any term'),
  77. ),
  78. '#dependency' => array(
  79. 'edit-options-argument-default-taxonomy-tid-node' => array(1),
  80. ),
  81. );
  82. }
  83. function options_submit(&$form, &$form_state, &$options = array()) {
  84. // Filter unselected items so we don't unnecessarily store giant arrays.
  85. $options['vocabularies'] = array_filter($options['vocabularies']);
  86. }
  87. function get_argument() {
  88. // Load default argument from taxonomy page.
  89. if (!empty($this->options['term_page'])) {
  90. if (arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
  91. return arg(2);
  92. }
  93. }
  94. // Load default argument from node.
  95. if (!empty($this->options['node'])) {
  96. foreach (range(1, 3) as $i) {
  97. $node = menu_get_object('node', $i);
  98. if (!empty($node)) {
  99. break;
  100. }
  101. }
  102. // Just check, if a node could be detected.
  103. if ($node) {
  104. $taxonomy = array();
  105. $fields = field_info_instances('node', $node->type);
  106. foreach ($fields as $name => $info) {
  107. $field_info = field_info_field($name);
  108. if ($field_info['type'] == 'taxonomy_term_reference') {
  109. $items = field_get_items('node', $node, $name);
  110. if (is_array($items)) {
  111. foreach ($items as $item) {
  112. $taxonomy[$item['tid']] = $field_info['settings']['allowed_values'][0]['vocabulary'];
  113. }
  114. }
  115. }
  116. }
  117. if (!empty($this->options['limit'])) {
  118. $tids = array();
  119. // filter by vocabulary
  120. foreach ($taxonomy as $tid => $vocab) {
  121. if (!empty($this->options['vocabularies'][$vocab])) {
  122. $tids[] = $tid;
  123. }
  124. }
  125. return implode($this->options['anyall'], $tids);
  126. }
  127. // Return all tids.
  128. else {
  129. return implode($this->options['anyall'], array_keys($taxonomy));
  130. }
  131. }
  132. }
  133. // If the current page is a view that takes tid as an argument,
  134. // find the tid argument and return it.
  135. $views_page = views_get_page_view();
  136. if ($views_page && isset($views_page->argument['tid'])) {
  137. return $views_page->argument['tid']->argument;
  138. }
  139. }
  140. }