views_plugin_display_block.inc 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?php
  2. /**
  3. * @file
  4. * Contains the block display plugin.
  5. */
  6. /**
  7. * The plugin that handles a block.
  8. *
  9. * @ingroup views_display_plugins
  10. */
  11. class views_plugin_display_block extends views_plugin_display {
  12. function option_definition() {
  13. $options = parent::option_definition();
  14. $options['block_description'] = array('default' => '', 'translatable' => TRUE);
  15. $options['block_caching'] = array('default' => DRUPAL_NO_CACHE);
  16. return $options;
  17. }
  18. /**
  19. * The default block handler doesn't support configurable items,
  20. * but extended block handlers might be able to do interesting
  21. * stuff with it.
  22. */
  23. function execute_hook_block_list($delta = 0, $edit = array()) {
  24. $delta = $this->view->name . '-' . $this->display->id;
  25. $desc = $this->get_option('block_description');
  26. if (empty($desc)) {
  27. if ($this->display->display_title == $this->definition['title']) {
  28. $desc = t('View: !view', array('!view' => $this->view->get_human_name()));
  29. }
  30. else {
  31. $desc = t('View: !view: !display', array('!view' => $this->view->get_human_name(), '!display' => $this->display->display_title));
  32. }
  33. }
  34. return array(
  35. $delta => array(
  36. 'info' => $desc,
  37. 'cache' => $this->get_cache_type()
  38. ),
  39. );
  40. }
  41. /**
  42. * The display block handler returns the structure necessary for a block.
  43. */
  44. function execute() {
  45. // Prior to this being called, the $view should already be set to this
  46. // display, and arguments should be set on the view.
  47. $info['content'] = $this->view->render();
  48. $info['subject'] = filter_xss_admin($this->view->get_title());
  49. if (!empty($this->view->result) || $this->get_option('empty') || !empty($this->view->style_plugin->definition['even empty'])) {
  50. return $info;
  51. }
  52. }
  53. /**
  54. * Provide the summary for page options in the views UI.
  55. *
  56. * This output is returned as an array.
  57. */
  58. function options_summary(&$categories, &$options) {
  59. // It is very important to call the parent function here:
  60. parent::options_summary($categories, $options);
  61. $categories['block'] = array(
  62. 'title' => t('Block settings'),
  63. 'column' => 'second',
  64. 'build' => array(
  65. '#weight' => -10,
  66. ),
  67. );
  68. $block_description = strip_tags($this->get_option('block_description'));
  69. if (empty($block_description)) {
  70. $block_description = t('None');
  71. }
  72. $options['block_description'] = array(
  73. 'category' => 'block',
  74. 'title' => t('Block name'),
  75. 'value' => views_ui_truncate($block_description, 24),
  76. );
  77. $types = $this->block_caching_modes();
  78. $options['block_caching'] = array(
  79. 'category' => 'other',
  80. 'title' => t('Block caching'),
  81. 'value' => $types[$this->get_cache_type()],
  82. );
  83. }
  84. /**
  85. * Provide a list of core's block caching modes.
  86. */
  87. function block_caching_modes() {
  88. return array(
  89. DRUPAL_NO_CACHE => t('Do not cache'),
  90. DRUPAL_CACHE_GLOBAL => t('Cache once for everything (global)'),
  91. DRUPAL_CACHE_PER_PAGE => t('Per page'),
  92. DRUPAL_CACHE_PER_ROLE => t('Per role'),
  93. DRUPAL_CACHE_PER_ROLE | DRUPAL_CACHE_PER_PAGE => t('Per role per page'),
  94. DRUPAL_CACHE_PER_USER => t('Per user'),
  95. DRUPAL_CACHE_PER_USER | DRUPAL_CACHE_PER_PAGE => t('Per user per page'),
  96. );
  97. }
  98. /**
  99. * Provide a single method to figure caching type, keeping a sensible default
  100. * for when it's unset.
  101. */
  102. function get_cache_type() {
  103. $cache_type = $this->get_option('block_caching');
  104. if (empty($cache_type)) {
  105. $cache_type = DRUPAL_NO_CACHE;
  106. }
  107. return $cache_type;
  108. }
  109. /**
  110. * Provide the default form for setting options.
  111. */
  112. function options_form(&$form, &$form_state) {
  113. // It is very important to call the parent function here:
  114. parent::options_form($form, $form_state);
  115. switch ($form_state['section']) {
  116. case 'block_description':
  117. $form['#title'] .= t('Block admin description');
  118. $form['block_description'] = array(
  119. '#type' => 'textfield',
  120. '#description' => t('This will appear as the name of this block in administer >> structure >> blocks.'),
  121. '#default_value' => $this->get_option('block_description'),
  122. );
  123. break;
  124. case 'block_caching':
  125. $form['#title'] .= t('Block caching type');
  126. $form['block_caching'] = array(
  127. '#type' => 'radios',
  128. '#description' => t("This sets the default status for Drupal's built-in block caching method; this requires that caching be turned on in block administration, and be careful because you have little control over when this cache is flushed."),
  129. '#options' => $this->block_caching_modes(),
  130. '#default_value' => $this->get_cache_type(),
  131. );
  132. break;
  133. case 'exposed_form_options':
  134. $this->view->init_handlers();
  135. if (!$this->uses_exposed() && parent::uses_exposed()) {
  136. $form['exposed_form_options']['warning'] = array(
  137. '#weight' => -10,
  138. '#markup' => '<div class="messages warning">' . t('Exposed filters in block displays require "Use AJAX" to be set to work correctly.') . '</div>',
  139. );
  140. }
  141. }
  142. }
  143. /**
  144. * Perform any necessary changes to the form values prior to storage.
  145. * There is no need for this function to actually store the data.
  146. */
  147. function options_submit(&$form, &$form_state) {
  148. // It is very important to call the parent function here:
  149. parent::options_submit($form, $form_state);
  150. switch ($form_state['section']) {
  151. case 'display_id':
  152. $this->update_block_bid($form_state['view']->name, $this->display->id, $this->display->new_id);
  153. break;
  154. case 'block_description':
  155. $this->set_option('block_description', $form_state['values']['block_description']);
  156. break;
  157. case 'block_caching':
  158. $this->set_option('block_caching', $form_state['values']['block_caching']);
  159. $this->save_block_cache($form_state['view']->name . '-'. $form_state['display_id'], $form_state['values']['block_caching']);
  160. break;
  161. }
  162. }
  163. /**
  164. * Block views use exposed widgets only if AJAX is set.
  165. */
  166. function uses_exposed() {
  167. if ($this->use_ajax()) {
  168. return parent::uses_exposed();
  169. }
  170. return FALSE;
  171. }
  172. /**
  173. * Update the block delta when you change the machine readable name of the display.
  174. */
  175. function update_block_bid($name, $old_delta, $delta) {
  176. $old_hashes = $hashes = variable_get('views_block_hashes', array());
  177. $old_delta = $name . '-' . $old_delta;
  178. $delta = $name . '-' . $delta;
  179. if (strlen($old_delta) >= 32) {
  180. $old_delta = md5($old_delta);
  181. unset($hashes[$old_delta]);
  182. }
  183. if (strlen($delta) >= 32) {
  184. $md5_delta = md5($delta);
  185. $hashes[$md5_delta] = $delta;
  186. $delta = $md5_delta;
  187. }
  188. // Maybe people don't have block module installed, so let's skip this.
  189. if (db_table_exists('block')) {
  190. db_update('block')
  191. ->fields(array('delta' => $delta))
  192. ->condition('delta', $old_delta)
  193. ->execute();
  194. }
  195. // Update the hashes if needed.
  196. if ($hashes != $old_hashes) {
  197. variable_set('views_block_hashes', $hashes);
  198. }
  199. }
  200. /**
  201. * Save the block cache setting in the blocks table if this block allready
  202. * exists in the blocks table. Dirty fix untill http://drupal.org/node/235673 gets in.
  203. */
  204. function save_block_cache($delta, $cache_setting) {
  205. if (strlen($delta) >= 32) {
  206. $delta = md5($delta);
  207. }
  208. if (db_table_exists('block') && $bid = db_query("SELECT bid FROM {block} WHERE module = 'views' AND delta = :delta", array(
  209. ':delta' => $delta))->fetchField()) {
  210. db_update('block')
  211. ->fields(array(
  212. 'cache' => $cache_setting,
  213. ))
  214. ->condition('module','views')
  215. ->condition('delta', $delta)
  216. ->execute();
  217. }
  218. }
  219. }