views_plugin_display_feed.inc 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?php
  2. /**
  3. * @file
  4. * Contains the feed display plugin.
  5. */
  6. /**
  7. * The plugin that handles a feed, such as RSS or atom.
  8. *
  9. * For the most part, feeds are page displays but with some subtle differences.
  10. *
  11. * @ingroup views_display_plugins
  12. */
  13. class views_plugin_display_feed extends views_plugin_display_page {
  14. function init(&$view, &$display, $options = NULL) {
  15. parent::init($view, $display, $options);
  16. // Set the default row style. Ideally this would be part of the option
  17. // definition, but in this case it's dependent on the view's base table,
  18. // which we don't know until init().
  19. $row_plugins = views_fetch_plugin_names('row', $this->get_style_type(), array($view->base_table));
  20. $default_row_plugin = key($row_plugins);
  21. if ($this->options['row_plugin'] == '') {
  22. $this->options['row_plugin'] = $default_row_plugin;
  23. }
  24. }
  25. function uses_breadcrumb() { return FALSE; }
  26. function get_style_type() { return 'feed'; }
  27. /**
  28. * Feeds do not go through the normal page theming mechanism. Instead, they
  29. * go through their own little theme function and then return NULL so that
  30. * Drupal believes that the page has already rendered itself...which it has.
  31. */
  32. function execute() {
  33. $output = $this->view->render();
  34. if (empty($output)) {
  35. return drupal_not_found();
  36. }
  37. print $output;
  38. }
  39. function preview() {
  40. if (!empty($this->view->live_preview)) {
  41. return '<pre>' . check_plain($this->view->render()) . '</pre>';
  42. }
  43. return $this->view->render();
  44. }
  45. /**
  46. * Instead of going through the standard views_view.tpl.php, delegate this
  47. * to the style handler.
  48. */
  49. function render() {
  50. return $this->view->style_plugin->render($this->view->result);
  51. }
  52. function defaultable_sections($section = NULL) {
  53. if (in_array($section, array('style_options', 'style_plugin', 'row_options', 'row_plugin',))) {
  54. return FALSE;
  55. }
  56. $sections = parent::defaultable_sections($section);
  57. // Tell views our sitename_title option belongs in the title section.
  58. if ($section == 'title') {
  59. $sections[] = 'sitename_title';
  60. }
  61. elseif (!$section) {
  62. $sections['title'][] = 'sitename_title';
  63. }
  64. return $sections;
  65. }
  66. function option_definition() {
  67. $options = parent::option_definition();
  68. $options['displays'] = array('default' => array());
  69. // Overrides for standard stuff:
  70. $options['style_plugin']['default'] = 'rss';
  71. $options['style_options']['default'] = array('description' => '');
  72. $options['sitename_title']['default'] = FALSE;
  73. $options['row_plugin']['default'] = '';
  74. $options['defaults']['default']['style_plugin'] = FALSE;
  75. $options['defaults']['default']['style_options'] = FALSE;
  76. $options['defaults']['default']['row_plugin'] = FALSE;
  77. $options['defaults']['default']['row_options'] = FALSE;
  78. return $options;
  79. }
  80. function options_summary(&$categories, &$options) {
  81. // It is very important to call the parent function here:
  82. parent::options_summary($categories, $options);
  83. // Since we're childing off the 'page' type, we'll still *call* our
  84. // category 'page' but let's override it so it says feed settings.
  85. $categories['page'] = array(
  86. 'title' => t('Feed settings'),
  87. 'column' => 'second',
  88. 'build' => array(
  89. '#weight' => -10,
  90. ),
  91. );
  92. if ($this->get_option('sitename_title')) {
  93. $options['title']['value'] = t('Using the site name');
  94. }
  95. // I don't think we want to give feeds menus directly.
  96. unset($options['menu']);
  97. $displays = array_filter($this->get_option('displays'));
  98. if (count($displays) > 1) {
  99. $attach_to = t('Multiple displays');
  100. }
  101. elseif (count($displays) == 1) {
  102. $display = array_shift($displays);
  103. if (!empty($this->view->display[$display])) {
  104. $attach_to = check_plain($this->view->display[$display]->display_title);
  105. }
  106. }
  107. if (!isset($attach_to)) {
  108. $attach_to = t('None');
  109. }
  110. $options['displays'] = array(
  111. 'category' => 'page',
  112. 'title' => t('Attach to'),
  113. 'value' => $attach_to,
  114. );
  115. }
  116. /**
  117. * Provide the default form for setting options.
  118. */
  119. function options_form(&$form, &$form_state) {
  120. // It is very important to call the parent function here.
  121. parent::options_form($form, $form_state);
  122. switch ($form_state['section']) {
  123. case 'title':
  124. $title = $form['title'];
  125. // A little juggling to move the 'title' field beyond our checkbox.
  126. unset($form['title']);
  127. $form['sitename_title'] = array(
  128. '#type' => 'checkbox',
  129. '#title' => t('Use the site name for the title'),
  130. '#default_value' => $this->get_option('sitename_title'),
  131. );
  132. $form['title'] = $title;
  133. $form['title']['#dependency'] = array('edit-sitename-title' => array(FALSE));
  134. break;
  135. case 'displays':
  136. $form['#title'] .= t('Attach to');
  137. $displays = array();
  138. foreach ($this->view->display as $display_id => $display) {
  139. if (!empty($display->handler) && $display->handler->accept_attachments()) {
  140. $displays[$display_id] = $display->display_title;
  141. }
  142. }
  143. $form['displays'] = array(
  144. '#type' => 'checkboxes',
  145. '#description' => t('The feed icon will be available only to the selected displays.'),
  146. '#options' => $displays,
  147. '#default_value' => $this->get_option('displays'),
  148. );
  149. break;
  150. case 'path':
  151. $form['path']['#description'] = t('This view will be displayed by visiting this path on your site. It is recommended that the path be something like "path/%/%/feed" or "path/%/%/rss.xml", putting one % in the path for each contextual filter you have defined in the view.');
  152. }
  153. }
  154. /**
  155. * Perform any necessary changes to the form values prior to storage.
  156. * There is no need for this function to actually store the data.
  157. */
  158. function options_submit(&$form, &$form_state) {
  159. // It is very important to call the parent function here:
  160. parent::options_submit($form, $form_state);
  161. switch ($form_state['section']) {
  162. case 'title':
  163. $this->set_option('sitename_title', $form_state['values']['sitename_title']);
  164. break;
  165. case 'displays':
  166. $this->set_option($form_state['section'], $form_state['values'][$form_state['section']]);
  167. break;
  168. }
  169. }
  170. /**
  171. * Attach to another view.
  172. */
  173. function attach_to($display_id) {
  174. $displays = $this->get_option('displays');
  175. if (empty($displays[$display_id])) {
  176. return;
  177. }
  178. // Defer to the feed style; it may put in meta information, and/or
  179. // attach a feed icon.
  180. $plugin = $this->get_plugin();
  181. if ($plugin) {
  182. $clone = $this->view->clone_view();
  183. $clone->set_display($this->display->id);
  184. $clone->build_title();
  185. $plugin->attach_to($display_id, $this->get_path(), $clone->get_title());
  186. // Clean up
  187. $clone->destroy();
  188. unset($clone);
  189. }
  190. }
  191. function uses_link_display() {
  192. return TRUE;
  193. }
  194. }