class Feed in Views (for Drupal 7) 8.3
The plugin that handles a feed, such as RSS or atom.
For the most part, feeds are page displays but with some subtle differences.
Plugin annotation
@Plugin(
id = "feed",
title = @Translation("Feed"),
help = @Translation("Display the view as a feed, such as an RSS feed."),
uses_hook_menu = TRUE,
admin = @Translation("Feed")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\views\Plugin\views\PluginBase
- class \Drupal\views\Plugin\views\display\DisplayPluginBase
- class \Drupal\views\Plugin\views\PluginBase
Expanded class hierarchy of Feed
Related topics
1 file declares its use of Feed
- ViewStorageTest.php in lib/
Drupal/ views/ Tests/ ViewStorageTest.php - Definition of Drupal\views\Tests\ViewStorageTest.
5 string references to 'Feed'
- views.view.frontpage.yml in config/
views.view.frontpage.yml - config/views.view.frontpage.yml
- views.view.taxonomy_term.yml in config/
views.view.taxonomy_term.yml - config/views.view.taxonomy_term.yml
- views.view.test_feed_display.yml in tests/
views_test_config/ config/ views.view.test_feed_display.yml - tests/views_test_config/config/views.view.test_feed_display.yml
- ViewStorageTest::displayMethodTests in lib/
Drupal/ views/ Tests/ ViewStorageTest.php - Tests the display related functions like getDisplaysList().
- WizardPluginBase::addDisplays in lib/
Drupal/ views/ Plugin/ views/ wizard/ WizardPluginBase.php - Adds the array of display options to the view, with appropriate overrides.
File
- lib/
Drupal/ views/ Plugin/ views/ display/ Feed.php, line 31 - Definition of Drupal\views\Plugin\views\display\Feed.
Namespace
Drupal\views\Plugin\views\displayView source
class Feed extends Page {
/**
* Whether the display allows the use of AJAX or not.
*
* @var bool
*/
protected $usesAJAX = FALSE;
/**
* Whether the display allows the use of a pager or not.
*
* @var bool
*/
protected $usesPager = FALSE;
public function init(ViewExecutable $view, &$display, $options = NULL) {
parent::init($view, $display, $options);
// Set the default row style. Ideally this would be part of the option
// definition, but in this case it's dependent on the view's base table,
// which we don't know until init().
$row_plugins = views_fetch_plugin_names('row', $this
->getStyleType(), array(
$view->storage->base_table,
));
$default_row_plugin = key($row_plugins);
if (empty($this->options['row']['type'])) {
$this->options['row']['type'] = $default_row_plugin;
}
}
public function usesBreadcrumb() {
return FALSE;
}
protected function getStyleType() {
return 'feed';
}
/**
* Feeds do not go through the normal page theming mechanism. Instead, they
* go through their own little theme function and then return NULL so that
* Drupal believes that the page has already rendered itself...which it has.
*/
public function execute() {
$output = $this->view
->render();
if (empty($output)) {
throw new NotFoundHttpException();
}
$response = $this->view
->getResponse();
$response
->setContent($output);
return $response;
}
public function preview() {
if (!empty($this->view->live_preview)) {
return '<pre>' . check_plain($this->view
->render()) . '</pre>';
}
return $this->view
->render();
}
/**
* Instead of going through the standard views_view.tpl.php, delegate this
* to the style handler.
*/
public function render() {
return $this->view->style_plugin
->render($this->view->result);
}
public function defaultableSections($section = NULL) {
if (in_array($section, array(
'style',
'row',
))) {
return FALSE;
}
$sections = parent::defaultableSections($section);
// Tell views our sitename_title option belongs in the title section.
if ($section == 'title') {
$sections[] = 'sitename_title';
}
elseif (!$section) {
$sections['title'][] = 'sitename_title';
}
return $sections;
}
protected function defineOptions() {
$options = parent::defineOptions();
$options['displays'] = array(
'default' => array(),
);
// Overrides for standard stuff:
$options['style']['contains']['type']['default'] = 'rss';
$options['style']['contains']['options']['default'] = array(
'description' => '',
);
$options['sitename_title']['default'] = FALSE;
$options['row']['contains']['type']['default'] = '';
$options['defaults']['default']['style'] = FALSE;
$options['defaults']['default']['row'] = FALSE;
return $options;
}
public function optionsSummary(&$categories, &$options) {
// It is very important to call the parent function here:
parent::optionsSummary($categories, $options);
// Since we're childing off the 'page' type, we'll still *call* our
// category 'page' but let's override it so it says feed settings.
$categories['page'] = array(
'title' => t('Feed settings'),
'column' => 'second',
'build' => array(
'#weight' => -10,
),
);
if ($this
->getOption('sitename_title')) {
$options['title']['value'] = t('Using the site name');
}
// I don't think we want to give feeds menus directly.
unset($options['menu']);
$displays = array_filter($this
->getOption('displays'));
if (count($displays) > 1) {
$attach_to = t('Multiple displays');
}
elseif (count($displays) == 1) {
$display = array_shift($displays);
if (!empty($this->view->storage->display[$display])) {
$attach_to = check_plain($this->view->storage->display[$display]['display_title']);
}
}
if (!isset($attach_to)) {
$attach_to = t('None');
}
$options['displays'] = array(
'category' => 'page',
'title' => t('Attach to'),
'value' => $attach_to,
);
}
/**
* Provide the default form for setting options.
*/
public function buildOptionsForm(&$form, &$form_state) {
// It is very important to call the parent function here.
parent::buildOptionsForm($form, $form_state);
switch ($form_state['section']) {
case 'title':
$title = $form['title'];
// A little juggling to move the 'title' field beyond our checkbox.
unset($form['title']);
$form['sitename_title'] = array(
'#type' => 'checkbox',
'#title' => t('Use the site name for the title'),
'#default_value' => $this
->getOption('sitename_title'),
);
$form['title'] = $title;
$form['title']['#states'] = array(
'visible' => array(
':input[name="sitename_title"]' => array(
'checked' => FALSE,
),
),
);
break;
case 'displays':
$form['#title'] .= t('Attach to');
$displays = array();
foreach ($this->view->storage->display as $display_id => $display) {
// @todo The display plugin should have display_title and id as well.
if (!empty($this->view->displayHandlers[$display_id]) && $this->view->displayHandlers[$display_id]
->acceptAttachments()) {
$displays[$display_id] = $display['display_title'];
}
}
$form['displays'] = array(
'#type' => 'checkboxes',
'#description' => t('The feed icon will be available only to the selected displays.'),
'#options' => $displays,
'#default_value' => $this
->getOption('displays'),
);
break;
case 'path':
$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.');
}
}
/**
* Perform any necessary changes to the form values prior to storage.
* There is no need for this function to actually store the data.
*/
public function submitOptionsForm(&$form, &$form_state) {
// It is very important to call the parent function here:
parent::submitOptionsForm($form, $form_state);
switch ($form_state['section']) {
case 'title':
$this
->setOption('sitename_title', $form_state['values']['sitename_title']);
break;
case 'displays':
$this
->setOption($form_state['section'], $form_state['values'][$form_state['section']]);
break;
}
}
/**
* Attach to another view.
*/
public function attachTo($display_id) {
$displays = $this
->getOption('displays');
if (empty($displays[$display_id])) {
return;
}
// Defer to the feed style; it may put in meta information, and/or
// attach a feed icon.
$plugin = $this
->getPlugin('style');
if ($plugin) {
$clone = $this->view
->cloneView();
$clone
->setDisplay($this->display['id']);
$clone
->buildTitle();
$plugin
->attach_to($display_id, $this
->getPath(), $clone
->getTitle());
// Clean up
$clone
->destroy();
unset($clone);
}
}
public function usesLinkDisplay() {
return TRUE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DisplayPluginBase:: |
property | Stores all available display extenders. | ||
DisplayPluginBase:: |
property | |||
DisplayPluginBase:: |
public | property | Stores the rendered output of the display. | |
DisplayPluginBase:: |
protected | property | An array of instantiated plugins used in this display. | |
DisplayPluginBase:: |
protected | property | Whether the display allows the use of a 'more' link or not. | |
DisplayPluginBase:: |
protected | property |
Overrides Drupal\views\Plugin\Plugin::$usesOptions. Overrides PluginBase:: |
|
DisplayPluginBase:: |
property |
The top object of a view. Overrides PluginBase:: |
||
DisplayPluginBase:: |
public | function | Determines whether this display can use attachments. | |
DisplayPluginBase:: |
public | function | Determine if the user has access to this display of the view. | |
DisplayPluginBase:: |
public | function |
Clears a plugin. Overrides PluginBase:: |
|
DisplayPluginBase:: |
public | function | Determine if this display should display the exposed filters widgets, so the view will know whether or not to render them. | 1 |
DisplayPluginBase:: |
protected | function | Format a list of theme templates for output by the theme info helper. | |
DisplayPluginBase:: |
public | function | Returns to tokens for arguments. | |
DisplayPluginBase:: |
public | function | Retrieve a list of fields for the current display with the relationship associated if it exists. | |
DisplayPluginBase:: |
public | function | Get the handler object for a single handler. | |
DisplayPluginBase:: |
public | function | Get a full array of handlers for $type. This caches them. | |
DisplayPluginBase:: |
public | function | Check to see which display to use when creating links within a view using this display. | |
DisplayPluginBase:: |
public | function | Intelligently get an option either from this display or from the default display, if directed to do so. | |
DisplayPluginBase:: |
public | function | Return the base path to use for this display. | |
DisplayPluginBase:: |
public | function | Get the instance of a plugin, for example style or row. | |
DisplayPluginBase:: |
public | function | Provide the block system with any exposed widget blocks for this display. | |
DisplayPluginBase:: |
public | function | ||
DisplayPluginBase:: |
public | function | If this display creates a block, implement one of these. | |
DisplayPluginBase:: |
public | function | If this display creates a page with a menu item, implement it here. | |
DisplayPluginBase:: |
public | function | Whether the display is actually using AJAX or not. | |
DisplayPluginBase:: |
public | function | Determine if this display is the 'default' display which contains fallback settings | 1 |
DisplayPluginBase:: |
public | function | Determine if a given option is set to use the default display or the current display | |
DisplayPluginBase:: |
public | function | Whether the display is enabled. | |
DisplayPluginBase:: |
public | function | Check if the provided identifier is unique. | |
DisplayPluginBase:: |
public | function | Whether the display is using the 'more' link or not. | |
DisplayPluginBase:: |
public | function | Whether the display is using a pager or not. | |
DisplayPluginBase:: |
public | function | Because forms may be split up into sections, this provides an easy URL to exactly the right section. Don't override this. | |
DisplayPluginBase:: |
public | function | If override/revert was clicked, perform the proper toggle. | |
DisplayPluginBase:: |
public | function | Set an option and force it to be an override. | |
DisplayPluginBase:: |
public | function | Set up any variables on the view prior to execution. These are separated from execute because they are extremely common and unlikely to be overridden on an individual display. | |
DisplayPluginBase:: |
public | function |
Inject anything into the query that the display handler needs. Overrides PluginBase:: |
|
DisplayPluginBase:: |
public | function | ||
DisplayPluginBase:: |
public | function | ||
DisplayPluginBase:: |
public | function | Not all display plugins will support filtering | |
DisplayPluginBase:: |
public | function | Render the footer of the view. | |
DisplayPluginBase:: |
public | function | Render the header of the view. | |
DisplayPluginBase:: |
public | function | Render the 'more' link | |
DisplayPluginBase:: |
public | function | Not all display plugins will suppert pager rendering. | 1 |
DisplayPluginBase:: |
public | function | Intelligently set an option either from this display or from the default display, if directed to do so. | |
DisplayPluginBase:: |
public | function | Flip the override setting for the given section. | |
DisplayPluginBase:: |
public | function | Does the display have groupby enabled? | |
DisplayPluginBase:: |
public | function | Should the enabled display more link be shown when no more items? | |
DisplayPluginBase:: |
public | function | Does the display have custom link text? | |
DisplayPluginBase:: |
public | function | Whether the display allows the use of AJAX or not. | 1 |
DisplayPluginBase:: |
public | function | Returns whether the display can use attachments. | 4 |
DisplayPluginBase:: |
public | function | Determine if this display uses exposed filters, so the view will know whether or not to build them. | 2 |
DisplayPluginBase:: |
public | function | Check to see if the display can put the exposed formin a block. | |
DisplayPluginBase:: |
public | function | Determine if the display's style uses fields. | |
DisplayPluginBase:: |
public | function | Whether the display allows the use of a 'more' link or not. | |
DisplayPluginBase:: |
public | function | Whether the display allows the use of a pager or not. | 2 |
DisplayPluginBase:: |
public | function | Render any special blocks provided for this display. | |
Feed:: |
protected | property |
Whether the display allows the use of AJAX or not. Overrides DisplayPluginBase:: |
|
Feed:: |
protected | property |
Whether the display allows the use of a pager or not. Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Attach to another view. Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Provide the default form for setting options. Overrides Page:: |
|
Feed:: |
public | function |
Static member function to list which sections are defaultable
and what items each section contains. Overrides DisplayPluginBase:: |
|
Feed:: |
protected | function |
Information about options for all kinds of purposes will be held here.
@code
'option_name' => array( Overrides Page:: |
|
Feed:: |
public | function |
Feeds do not go through the normal page theming mechanism. Instead, they
go through their own little theme function and then return NULL so that
Drupal believes that the page has already rendered itself...which it has. Overrides Page:: |
|
Feed:: |
protected | function |
Displays can require a certain type of style plugin. By default, they will
be 'normal'. Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Provide the summary for page options in the views UI. Overrides Page:: |
|
Feed:: |
public | function |
Fully render the display for the purposes of a live preview or
some other AJAXy reason. Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Instead of going through the standard views_view.tpl.php, delegate this
to the style handler. Overrides DisplayPluginBase:: |
|
Feed:: |
public | function |
Perform any necessary changes to the form values prior to storage.
There is no need for this function to actually store the data. Overrides Page:: |
|
Feed:: |
public | function |
Check to see if the display needs a breadcrumb Overrides Page:: |
|
Feed:: |
public | function |
Check to see if the display has some need to link to another display. Overrides DisplayPluginBase:: |
|
Page:: |
protected | property |
Whether the display allows attachments. Overrides DisplayPluginBase:: |
|
Page:: |
public | function | Add this display's path information to Drupal's menu system. | |
Page:: |
public | function |
Provide some helpful text for the arguments.
The result should contain of an array with Overrides DisplayPluginBase:: |
|
Page:: |
public | function |
Provide some helpful text for pagers. Overrides DisplayPluginBase:: |
|
Page:: |
public | function |
The page display has a path. Overrides DisplayPluginBase:: |
|
Page:: |
public | function |
Make sure the display and all associated handlers are valid. Overrides DisplayPluginBase:: |
|
Page:: |
public | function |
Validate the options form. Overrides DisplayPluginBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
public | property | Plugins's definition | |
PluginBase:: |
public | property | The display object this plugin is for. | |
PluginBase:: |
public | property | Options for this plugin will be held here. | |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
public | function | Provide a list of additional theme functions for the theme information page | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Return the human readable name of the display. | |
PluginBase:: |
protected | function | ||
PluginBase:: |
public | function | Returns the summary of the settings in the display. | 6 |
PluginBase:: |
public | function | Provide a full list of possible theme templates used by this style. | 1 |
PluginBase:: |
public | function | Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away. | |
PluginBase:: |
public | function | Returns the usesOptions property. | 8 |
PluginBase:: |
public | function |
Constructs a Plugin object. Overrides PluginBase:: |
2 |