class Page in Views PDF 8
This class contains all the functionality of the PDF display.
Plugin annotation
@ViewsDisplay(
id = "views_pdf_page",
title = @Translation("PDF Page"),
help = @Translation("Display the view as a pdf page, with a URL and menu links."),
uses_menu_links = TRUE,
uses_route = TRUE,
contextual_links_locations = {"page"},
theme = "views_view",
admin =
@Translation("PDF Page")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, TrustedCallbackInterface, ViewsPluginInterface
- class \Drupal\views\Plugin\views\display\DisplayPluginBase implements DependentPluginInterface, DisplayPluginInterface uses PluginDependencyTrait
- class \Drupal\views\Plugin\views\display\PathPluginBase implements DisplayMenuInterface, DisplayRouterInterface uses UrlGeneratorTrait
- class \Drupal\views\Plugin\views\display\DisplayPluginBase implements DependentPluginInterface, DisplayPluginInterface uses PluginDependencyTrait
- class \Drupal\views\Plugin\views\PluginBase implements DependentPluginInterface, ContainerFactoryPluginInterface, TrustedCallbackInterface, ViewsPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Page
2 string references to 'Page'
- Fields::options_form in src/
Plugin/ views/ row/ Fields.php - Provide a form for setting options.
- views_pdf_views_plugins in ./
views_pdf.views.inc - Implements hook_views_plugins().
File
- src/
Plugin/ views/ display/ Page.php, line 36 - Contains \Drupal\views_pdf\Plugin\views\display\Page.
Namespace
Drupal\views_pdf\Plugin\views\displayView source
class Page extends ViewsPage {
/**
* {@inheritdoc}
*/
public function defaultableSections($section = NULL) {
if (in_array($section, [
'style_options',
'style_plugin',
'row_options',
'row_plugin',
])) {
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;
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['displays'] = [
'default' => [],
];
// Overrides for standard stuff:
$options['style_plugin']['default'] = 'unformatted_pdf';
$options['style_options']['default'] = [
'mission_description' => FALSE,
'description' => '',
];
$options['sitename_title']['default'] = FALSE;
$options['row_plugin']['default'] = 'pdf_fields';
$options['defaults']['default']['style_plugin'] = FALSE;
$options['defaults']['default']['style_options'] = FALSE;
$options['defaults']['default']['row_plugin'] = FALSE;
$options['defaults']['default']['row_options'] = FALSE;
// New Options
$options['default_page_format'] = [
'default' => 'A4',
];
$options['default_page_format_custom'] = [
'default' => '',
];
$options['default_page_orientation'] = [
'default' => 'P',
];
$options['unit'] = [
'default' => 'mm',
];
$options['margin_left'] = [
'default' => '15',
];
$options['margin_right'] = [
'default' => '15',
];
$options['margin_top'] = [
'default' => '15',
];
$options['margin_bottom'] = [
'default' => '15',
];
$options['leading_template'] = [
'default' => '',
];
$options['template'] = [
'default' => '',
];
$options['succeed_template'] = [
'default' => '',
];
$options['default_font_family'] = [
'default' => 'helvetica',
];
$options['default_font_style'] = [
'default' => [],
];
$options['default_font_size'] = [
'default' => '11',
];
$options['default_text_align'] = [
'default' => 'L',
];
$options['default_font_color'] = [
'default' => '000000',
];
$options['default_text_hyphenate'] = [
'default' => 'none',
];
$options['css_file'] = [
'default' => '',
];
return $options;
}
public function optionsSummary(&$categories, &$options) {
parent::optionsSummary($categories, $options);
$fonts = ViewsPdfBase::getAvailableFontsCleanList();
// Change Page title:
$categories['page'] = [
'title' => t('PDF settings'),
'column' => 'second',
'build' => [
'#weight' => -10,
],
];
// Add for pdf page settings
$options['pdf_page'] = [
'category' => 'page',
'title' => t('PDF Page Settings'),
'value' => $this
->getOption('default_page_format'),
'desc' => t('Define some PDF specific settings.'),
];
// Add for pdf font settings
$options['pdf_fonts'] = [
'category' => 'page',
'title' => t('PDF Fonts Settings'),
'value' => t(':family at :size pt', [
':family' => $fonts[$this
->getOption('default_font_family')],
':size' => $this
->getOption('default_font_size'),
]),
'desc' => t('Define some PDF specific settings.'),
];
// add for pdf template settings
if ($this
->getOption('leading_template') !== '' || $this
->getOption('template') !== '' || $this
->getOption('succeed_template') !== '') {
$isAnyTemplate = t('Yes');
}
else {
$isAnyTemplate = t('No');
}
$options['pdf_template'] = [
'category' => 'page',
'title' => t('PDF Template Settings'),
'value' => $isAnyTemplate,
'desc' => t('Define some PDF specific settings.'),
];
if ($this
->getOption('css_file') === '') {
$css_file = t('None');
}
else {
$css_file = $this
->getOption('css_file');
}
$options['css'] = [
'category' => 'page',
'title' => t('CSS File'),
'value' => $css_file,
'desc' => t('Define a CSS file attached to all HTML output.'),
];
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
switch ($form_state
->get('section')) {
case 'pdf_page':
$form['#title'] .= t('PDF Page Options');
$form['default_page_format'] = [
'#type' => 'select',
'#title' => t('Default Page Format'),
'#required' => TRUE,
'#options' => [
's',
'e',
],
'#description' => t('This is the default page format. If you specifiy a different format in the template section, this settings will be override.'),
'#default_value' => $this
->getOption('default_page_format'),
];
$form['default_page_format_custom'] = [
'#type' => 'textfield',
'#title' => t('Custom Page Format'),
'#description' => t('Here you can specifiy a custom page format. The schema is "[width]x[height]".'),
'#default_value' => $this
->getOption('default_page_format_custom'),
];
$form['default_page_orientation'] = [
'#type' => 'radios',
'#title' => t('Default Page Orientation'),
'#required' => TRUE,
'#options' => [
'P' => t('Portrait'),
'L' => t('Landscape'),
],
'#description' => t('This is the default page orientation.'),
'#default_value' => $this
->getOption('default_page_orientation'),
];
$form['unit'] = [
'#type' => 'select',
'#title' => t('Unit'),
'#required' => TRUE,
'#options' => [
'mm' => t('mm: Millimeter'),
'pt' => t('pt: Point'),
'cm' => t('cm: Centimeter'),
'in' => t('in: Inch'),
],
'#description' => t('This is the unit for the entered unit data. If you change this option all defined units were changed, but not converted.'),
'#default_value' => $this
->getOption('unit'),
];
$form['margin_left'] = [
'#type' => 'textfield',
'#title' => t('Margin: Left'),
'#required' => TRUE,
'#default_value' => $this
->getOption('margin_left'),
];
$form['margin_right'] = [
'#type' => 'textfield',
'#title' => t('Margin: Right'),
'#required' => TRUE,
'#default_value' => $this
->getOption('margin_right'),
];
$form['margin_top'] = [
'#type' => 'textfield',
'#title' => t('Margin: Top'),
'#required' => TRUE,
'#default_value' => $this
->getOption('margin_top'),
];
$form['margin_bottom'] = [
'#type' => 'textfield',
'#title' => t('Margin: Bottom'),
'#required' => TRUE,
'#default_value' => $this
->getOption('margin_bottom'),
];
break;
case 'pdf_fonts':
$fonts = ViewsPdfBase::getAvailableFontsCleanList();
$font_styles = [
'b' => t('Bold'),
'i' => t('Italic'),
'u' => t('Underline'),
'd' => t('Line through'),
'o' => t('Overline'),
];
$align = [
'L' => t('Left'),
'C' => t('Center'),
'R' => t('Right'),
'J' => t('Justify'),
];
$hyphenate = [
'none' => t('None'),
'auto' => t('Detect automatically'),
];
$hyphenate = array_merge($hyphenate, ViewsPdfBase::getAvailableHyphenatePatterns());
$form['#title'] .= t('PDF Default Font Options');
$form['description'] = [
'#prefix' => '<div class="description form-item">',
'#suffix' => '</div>',
'#value' => t('Here you specify a the default font settings for the document.'),
];
$form['default_font_size'] = [
'#type' => 'textfield',
'#title' => t('Font Size'),
'#size' => 10,
'#default_value' => $this
->getOption('default_font_size'),
];
$form['default_font_family'] = [
'#type' => 'select',
'#title' => t('Font Family'),
'#options' => $fonts,
'#size' => 5,
'#default_value' => $this
->getOption('default_font_family'),
];
$form['default_font_style'] = [
'#type' => 'checkboxes',
'#title' => t('Font Style'),
'#options' => $font_styles,
'#default_value' => $this
->getOption('default_font_style'),
];
$form['default_text_align'] = [
'#type' => 'radios',
'#title' => t('Text Alignment'),
'#options' => $align,
'#default_value' => $this
->getOption('default_text_align'),
];
$form['default_text_hyphenate'] = [
'#type' => 'select',
'#title' => t('Text Hyphenation'),
'#options' => $hyphenate,
'#description' => t('If you want to use hyphenation, then you need to download from <a href="@url">ctan.org</a> your needed pattern set. Then upload it to the dir "hyphenate_patterns" in the TCPDF lib directory. Perhaps you need to create the dir first. If you select the automated detection, then we try to get the language of the current node and select an appropriate hyphenation pattern.', [
'@url' => 'http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/tex',
]),
'#default_value' => $this
->getOption('default_text_hyphenate'),
];
$form['default_font_color'] = [
'#type' => 'textfield',
'#title' => t('Text Color'),
'#description' => t('If a value is entered without a comma, it will be interpreted as a hexadecimal RGB color. Normal RGB can be used by separating the components by a comma. e.g 255,255,255 for white. A CMYK color can be entered in the same way as RGB. e.g. 0,100,0,0 for magenta.'),
'#size' => 20,
'#default_value' => $this
->getOption('default_font_color'),
];
break;
case 'pdf_template':
$form['#title'] .= t('PDF Templates');
$templates = array_merge([
t('-- None --'),
], []);
$form['leading_template'] = [
'#type' => 'select',
'#options' => $templates,
'#title' => t('Leading PDF Template'),
'#required' => FALSE,
'#description' => t('Here you specify a PDF file to be printed in front of every row.'),
'#default_value' => $this
->getOption('leading_template'),
];
$form['template'] = [
'#type' => 'select',
'#options' => $templates,
'#title' => t('Template PDF'),
'#description' => t('Here you specify a PDF file on which the content is printed. The first page of this document is used for the first page, in the target document. The second page is used for the second page in the target document and so on. If the target document has more that this template file, the last page of the template will be repeated. The leading document has no effect on the order of the pages.'),
'#default_value' => $this
->getOption('template'),
];
$form['succeed_template'] = [
'#type' => 'select',
'#options' => $templates,
'#title' => t('Succeed PDF Template'),
'#required' => FALSE,
'#description' => t('Here you specify a PDF file to be printed after the main content.'),
'#default_value' => $this
->getOption('succeed_template'),
];
$form['template_file'] = [
'#type' => 'file',
'#title' => t('Upload New Template File'),
];
$form['#attached']['js'][] = [
'type' => 'setting',
'data' => [
'urlIsAjaxTrusted' => [
'',
],
],
];
break;
case 'displays':
$form['#title'] .= t('Attach to');
$displays = [];
foreach ($this->view
->getDisplay() as $display_id => $display) {
if (!empty($display->handler) && $display->handler
->accept_attachments()) {
$displays[$display_id] = $display->display_title;
}
}
$form['displays'] = [
'#type' => 'checkboxes',
'#description' => t('The feed icon will be available only to the selected displays.'),
'#options' => $displays,
'#default_value' => $this
->getOption('displays'),
];
break;
case 'css':
$form['#title'] .= t('CSS File');
$form['css_file'] = [
'#type' => 'textfield',
'#description' => t('URL to a CSS file. This file is attached to all fields, rendered as HTML.'),
'#default_value' => $this
->getOption('css_file'),
];
break;
}
}
/**
* {@inheritdoc}
*/
public static function &setPageRenderArray(array &$element = NULL) {
if (isset($element)) {
static::$pageRenderArray =& $element;
}
return static::$pageRenderArray;
}
/**
* Gets the current views page render array.
*
* @return array
* The page render array.
*/
public static function &getPageRenderArray() {
return static::$pageRenderArray;
}
/**
* {@inheritdoc}
*/
public function execute() {
parent::execute();
// And now render the view.
return $this->view
->render();
}
public function preview() {
return $this
->t('The PDF display does not provide a preview.');
}
/**
* {@inheritdoc}
*/
public function getPagerText() {
return [
'items per page title' => $this
->t('Items per page'),
'items per page description' => $this
->t('The number of items to display per page. Enter 0 for no limit.'),
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
DependencyTrait:: |
protected | property | The object's dependencies. | |
DependencyTrait:: |
protected | function | Adds multiple dependencies. | |
DependencyTrait:: |
protected | function | Adds a dependency. | |
DisplayPluginBase:: |
public | property | The display information coming directly from the view entity. | |
DisplayPluginBase:: |
protected | property | Stores all available display extenders. | |
DisplayPluginBase:: |
public | property | An array of instantiated handlers used in this display. | |
DisplayPluginBase:: |
public | property | Stores the rendered output of the display. | |
DisplayPluginBase:: |
protected | property | An array of instantiated plugins used in this display. | |
DisplayPluginBase:: |
protected static | property | Static cache for unpackOptions, but not if we are in the UI. | |
DisplayPluginBase:: |
protected | property | Whether the display allows the use of AJAX or not. | 2 |
DisplayPluginBase:: |
protected | property | Whether the display allows area plugins. | 2 |
DisplayPluginBase:: |
protected | property | Whether the display allows the use of a 'more' link or not. | 1 |
DisplayPluginBase:: |
protected | property |
Denotes whether the plugin has an additional options form. Overrides PluginBase:: |
1 |
DisplayPluginBase:: |
protected | property | Whether the display allows the use of a pager or not. | 4 |
DisplayPluginBase:: |
public | property |
The top object of a view. Overrides PluginBase:: |
|
DisplayPluginBase:: |
public | function |
Determines whether this display can use attachments. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Determines if the user has access to this display of the view. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Whether the display is actually using AJAX or not. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
protected | function | Applies the cacheability of the current display to the given render array. | |
DisplayPluginBase:: |
protected | function | Applies the cacheability of the current display to the given render array. | |
DisplayPluginBase:: |
public | function |
Allows displays to attach to other views. Overrides DisplayPluginInterface:: |
2 |
DisplayPluginBase:: |
public | function |
Builds a renderable array of the view. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
protected | function | Returns the available rendering strategies for language-aware entities. | |
DisplayPluginBase:: |
public | function |
Calculates the display's cache metadata by inspecting each handler/plugin. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Clears a plugin. Overrides PluginBase:: |
|
DisplayPluginBase:: |
public | function |
Determines if this display should display the exposed filters widgets. Overrides DisplayPluginInterface:: |
2 |
DisplayPluginBase:: |
public | function |
#pre_render callback for view display rendering. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
protected | function | Gets all the handlers used by the display. | |
DisplayPluginBase:: |
protected | function | Gets all the plugins used by the display. | |
DisplayPluginBase:: |
public | function |
Returns to tokens for arguments. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Find out all displays which are attached to this display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Gets the cache metadata. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Gets the display extenders. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Retrieves a list of fields for the current display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Get the handler object for a single handler. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Get a full array of handlers for $type. This caches them. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Returns the ID of the display to use when making links. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
protected | function | Get the more URL for this view. | |
DisplayPluginBase:: |
public | function |
Gets an option, from this display or the default display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Get the instance of a plugin, for example style or row. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Points to the display which can be linked by this display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Provides the block system with any exposed widget blocks for this display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Returns the display type that this display requires. Overrides DisplayPluginInterface:: |
4 |
DisplayPluginBase:: |
public | function |
Returns a URL to $this display or its configured linked display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Initializes the display plugin. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
protected | function | Returns whether the base table is of a translatable entity type. | |
DisplayPluginBase:: |
public | function |
Determines if this display is the 'default' display. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
public | function |
Determines if an option is set to use the default or current display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Whether the display is enabled. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Checks if the provided identifier is unique. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Whether the display is using the 'more' link or not. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Whether the display is using a pager or not. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Merges default values for all plugin types. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
protected | function | Merges handlers default values. | |
DisplayPluginBase:: |
protected | function | Merges plugins default values. | |
DisplayPluginBase:: |
public | function |
Reacts on adding a display. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
public | function |
Returns a link to a section of a form. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
If override/revert was clicked, perform the proper toggle. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Is the output of the view empty. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Set an option and force it to be an override. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Sets up any variables on the view prior to execution. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Add anything to the query that we might need to. Overrides PluginBase:: |
1 |
DisplayPluginBase:: |
public | function |
Renders this display. Overrides DisplayPluginInterface:: |
3 |
DisplayPluginBase:: |
public | function |
Renders one of the available areas. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Does nothing (obsolete function). Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Renders the 'more' link. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Checks to see if the display plugins support pager rendering. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
public | function |
Sets an option, on this display or the default display. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Flip the override setting for the given section. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public static | function |
Lists the trusted callbacks provided by the implementing class. Overrides PluginBase:: |
|
DisplayPluginBase:: |
public | function |
Does the display have groupby enabled? Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Should the enabled display more link be shown when no more items? Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Does the display have custom link text? Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Whether the display allows the use of AJAX or not. Overrides DisplayPluginInterface:: |
2 |
DisplayPluginBase:: |
public | function |
Returns whether the display can use areas. Overrides DisplayPluginInterface:: |
2 |
DisplayPluginBase:: |
public | function |
Returns whether the display can use attachments. Overrides DisplayPluginInterface:: |
6 |
DisplayPluginBase:: |
public | function |
Determines if this display uses exposed filters. Overrides DisplayPluginInterface:: |
4 |
DisplayPluginBase:: |
public | function |
Checks to see if the display can put the exposed form in a block. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Determines if the display's style uses fields. Overrides DisplayPluginInterface:: |
|
DisplayPluginBase:: |
public | function |
Checks to see if the display has some need to link to another display. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
public | function |
Whether the display allows the use of a 'more' link or not. Overrides DisplayPluginInterface:: |
1 |
DisplayPluginBase:: |
public | function |
Whether the display allows the use of a pager or not. Overrides DisplayPluginInterface:: |
4 |
DisplayPluginBase:: |
public | function |
Renders the exposed form as block. Overrides DisplayPluginInterface:: |
|
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
Page:: |
protected | property | The menu storage. | |
Page:: |
protected static | property | The current page render array. | |
Page:: |
protected | property |
Whether the display allows attachments. Overrides DisplayPluginBase:: |
|
Page:: |
public static | function |
Builds a basic render array which can be properly render cached. Overrides DisplayPluginBase:: |
|
Page:: |
public | function |
Provide a form to edit options for this plugin. Overrides Page:: |
|
Page:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DisplayPluginBase:: |
|
Page:: |
public static | function |
Creates an instance of the plugin. Overrides PathPluginBase:: |
|
Page:: |
public | function |
Lists the 'defaultable' sections and what items each section contains. Overrides DisplayPluginBase:: |
|
Page:: |
protected | function |
Overrides \Drupal\views\Plugin\views\display\DisplayPluginBase:defineOptions(). Overrides Page:: |
|
Page:: |
public | function |
Executes the view and returns data in the format required. Overrides Page:: |
|
Page:: |
public | function |
Provides help text for the arguments. Overrides DisplayPluginBase:: |
|
Page:: |
public static | function |
Gets the current views page render array. Overrides Page:: |
|
Page:: |
public | function |
Provides help text for pagers. Overrides Page:: |
|
Page:: |
protected | function |
Generates a route entry for a given view and display. Overrides PathPluginBase:: |
|
Page:: |
public | function |
Provides the default summary for options in the views UI. Overrides Page:: |
|
Page:: |
public | function |
Renders the display for the purposes of a live preview. Overrides DisplayPluginBase:: |
|
Page:: |
public static | function |
Sets the current page views render array. Overrides Page:: |
|
Page:: |
public | function |
Handle any special handling on the validate form. Overrides PathPluginBase:: |
|
Page:: |
public | function |
Validate that the plugin is correct and can be saved. Overrides PathPluginBase:: |
|
Page:: |
public | function |
Validate the options form. Overrides PathPluginBase:: |
|
Page:: |
public | function |
Constructs a Page object. Overrides PathPluginBase:: |
|
PathPluginBase:: |
protected | property | The route provider. | |
PathPluginBase:: |
protected | property | The state key value store. | |
PathPluginBase:: |
public | function |
Alters a collection of routes and replaces definitions to the view. Overrides DisplayRouterInterface:: |
|
PathPluginBase:: |
public | function |
Adds the route entry of a view to the collection. Overrides DisplayRouterInterface:: |
1 |
PathPluginBase:: |
public | function |
Returns the list of routes overridden by Views. Overrides DisplayRouterInterface:: |
|
PathPluginBase:: |
public | function |
Gets menu links, if this display provides some. Overrides DisplayMenuInterface:: |
|
PathPluginBase:: |
public | function |
Returns the base path to use for this display. Overrides DisplayPluginBase:: |
|
PathPluginBase:: |
public | function |
Returns the route name for the display. Overrides DisplayRouterInterface:: |
|
PathPluginBase:: |
public | function |
Generates a URL to this display. Overrides DisplayRouterInterface:: |
|
PathPluginBase:: |
public | function |
Checks to see if the display has a 'path' field. Overrides DisplayPluginBase:: |
|
PathPluginBase:: |
protected | function | Determines if this display's path is a default tab. | |
PathPluginBase:: |
protected | function | Determines whether the view overrides the given route. | 1 |
PathPluginBase:: |
protected | function | Determines whether a override for the path and method should happen. | |
PathPluginBase:: |
public | function |
Reacts on deleting a display. Overrides DisplayPluginBase:: |
|
PathPluginBase:: |
protected | function | Validates the path of the display. | |
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:: |
protected | property | Stores the render API renderer. | 3 |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
protected | function | Do the work to filter out stored options depending on the defined options. | |
PluginBase:: |
public | function |
Filter out stored options depending on the defined options. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns an array of available token replacements. Overrides ViewsPluginInterface:: |
|
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 |
Returns the plugin provider. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
protected | function | Returns the render API renderer. | 1 |
PluginBase:: |
public | function |
Adds elements for available core tokens to a form. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns a string with any core tokens replaced. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
constant | Include entity row languages when listing languages. | ||
PluginBase:: |
constant | Include negotiated languages when listing languages. | ||
PluginBase:: |
public | function |
Initialize the plugin. Overrides ViewsPluginInterface:: |
8 |
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
protected | function | Makes an array of languages, optionally including special languages. | |
PluginBase:: |
public | function |
Return the human readable name of the display. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function |
Moves form elements into fieldsets for presentation purposes. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function |
Flattens the structure of form elements. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public static | function | Returns substitutions for Views queries for languages. | |
PluginBase:: |
protected | function | Fills up the options of the plugin with defaults. | |
PluginBase:: |
public | function |
Returns the summary of the settings in the display. Overrides ViewsPluginInterface:: |
6 |
PluginBase:: |
public | function |
Provide a full list of possible theme templates used by this style. Overrides ViewsPluginInterface:: |
1 |
PluginBase:: |
public | function |
Unpack options over our existing defaults, drilling down into arrays
so that defaults don't get totally blown away. Overrides ViewsPluginInterface:: |
|
PluginBase:: |
public | function |
Returns the usesOptions property. Overrides ViewsPluginInterface:: |
8 |
PluginBase:: |
protected | function | Replaces Views' tokens in a given string. The resulting string will be sanitized with Xss::filterAdmin. | 1 |
PluginBase:: |
constant | Query string to indicate the site default language. | ||
PluginDependencyTrait:: |
protected | function | Calculates and adds dependencies of a specific plugin instance. | 1 |
PluginDependencyTrait:: |
protected | function | Calculates and returns dependencies of a specific plugin instance. | |
PluginDependencyTrait:: |
protected | function | Wraps the module handler. | 1 |
PluginDependencyTrait:: |
protected | function | Wraps the theme handler. | 1 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TrustedCallbackInterface:: |
constant | Untrusted callbacks throw exceptions. | ||
TrustedCallbackInterface:: |
constant | Untrusted callbacks trigger silenced E_USER_DEPRECATION errors. | ||
TrustedCallbackInterface:: |
constant | Untrusted callbacks trigger E_USER_WARNING errors. | ||
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Returns a redirect response object for the specified route. | 3 |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |