class Pdf in PDF Generator 8
Same name and namespace in other branches
- 2.0.x src/Plugin/views/display/Pdf.php \Drupal\pdf_generator\Plugin\views\display\Pdf
The plugin that handles a feed, such as RSS or atom.
Plugin annotation
@ViewsDisplay(
  id = "pdf_generator_views_display",
  title = @Translation("PDF"),
  help = @Translation("Display the view as a pdf."),
  uses_route = TRUE,
  admin = @Translation("PDF"),
  theme = "views_view",
  returns_response = TRUE
)
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\pdf_generator\Plugin\views\display\Pdf implements ContainerFactoryPluginInterface, ResponseDisplayPluginInterface
 
 
- 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 Pdf
File
- src/Plugin/ views/ display/ Pdf.php, line 32 
Namespace
Drupal\pdf_generator\Plugin\views\displayView source
class Pdf extends PathPluginBase implements ResponseDisplayPluginInterface, ContainerFactoryPluginInterface {
  /**
   * The date formatter service.
   *
   * @var \Drupal\pdf_generator\DomPdfGenerator
   */
  protected $pdfGenerator;
  /**
   * Constructs a new Date instance.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Routing\RouteProviderInterface $route_provider
   *   The route provider.
   * @param \Drupal\Core\State\StateInterface $state
   *   The state key value store.
   * @param \Drupal\pdf_generator\DomPdfGenerator $pdfGenerator
   *   The pdf generator.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, StateInterface $state, DomPdfGenerator $pdfGenerator) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $route_provider, $state);
    $this->pdfGenerator = $pdfGenerator;
  }
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('router.route_provider'), $container
      ->get('state'), $container
      ->get('pdf_generator.dompdf_generator'));
  }
  /**
   * Whether the display allows the use of AJAX or not.
   *
   * @var bool
   */
  protected $ajaxEnabled = FALSE;
  /**
   * Whether the display allows the use of a pager or not.
   *
   * @var bool
   */
  protected $usesPager = FALSE;
  /**
   * {@inheritdoc}
   */
  public function getType() {
    return 'normal';
  }
  /**
   * {@inheritdoc}
   */
  public static function buildResponse($view_id, $display_id, array $args = []) {
    $build = static::buildBasicRenderable($view_id, $display_id, $args);
    $view = Views::getView($view_id);
    $view
      ->setDisplay($display_id);
    $renderer = \Drupal::service('renderer');
    $output = [
      '#markup' => (string) $renderer
        ->renderRoot($build),
    ];
    if ($view->display_handler
      ->getOption('sitename_title') === 1) {
      $config = \Drupal::config('system.site');
      $titleValue = $config
        ->get('name');
    }
    elseif ($view->display_handler
      ->getOption('field_title') === 1) {
      $fieldName = $view->display_handler
        ->getOption('select_field_title');
      $entityTypeManager = \Drupal::entityTypeManager();
      $node = $entityTypeManager
        ->getStorage('node')
        ->load(reset($args));
      $titleValue = $node
        ->get($fieldName)->value;
    }
    else {
      $titleValue = $view
        ->getTitle();
    }
    $title = [
      '#markup' => $titleValue,
      '#allowed_tags' => Xss::getHtmlTagList(),
    ];
    $pageSize = !empty($view->display_handler
      ->getOption('paper_size')) ? $view->display_handler
      ->getOption('paper_size') : 'a4';
    $disposition = !empty($view->display_handler
      ->getOption('paper_disposition')) ? $view->display_handler
      ->getOption('paper_disposition') : 'portrait';
    $textCss = !empty($view->display_handler
      ->getOption('inline_css')) ? $view->display_handler
      ->getOption('inline_css') : NULL;
    $fileCss = !empty($view->display_handler
      ->getOption('file_css')) ? $view->display_handler
      ->getOption('file_css') : NULL;
    $response = \Drupal::service('pdf_generator.dompdf_generator')
      ->getResponse($title, $output, FALSE, [], $pageSize, $disposition, $textCss, $fileCss);
    return $response;
  }
  /**
   * {@inheritdoc}
   */
  public function execute() {
    parent::execute();
    return $this->view
      ->render();
  }
  /**
   * {@inheritdoc}
   */
  public function render() {
    $build = $this->view->style_plugin
      ->render($this->view->result);
    $this
      ->applyDisplayCacheabilityMetadata($build);
    return $build;
  }
  /**
   * {@inheritdoc}
   */
  public function preview() {
    $output = parent::preview();
    return $output;
  }
  /**
   * {@inheritdoc}
   */
  public function defaultableSections($section = NULL) {
    $sections = parent::defaultableSections($section);
    return $sections;
  }
  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['displays'] = [
      'default' => [],
    ];
    $options['style']['contains']['type']['default'] = 'pdf_generator_views_style_default';
    return $options;
  }
  /**
   * {@inheritdoc}
   */
  public function optionsSummary(&$categories, &$options) {
    parent::optionsSummary($categories, $options);
    // Since we're childing off the 'path' type, we'll still *call* our
    // category 'page' but let's override it so it says feed settings.
    $categories['page'] = [
      'title' => $this
        ->t('PDF settings'),
      'column' => 'second',
      'build' => [
        '#weight' => -10,
      ],
    ];
    if ($this
      ->getOption('sitename_title')) {
      $options['title']['value'] = $this
        ->t('Using the site name');
    }
    if ($this
      ->getOption('field_title')) {
      $options['title']['value'] = $this
        ->t('Using field value');
    }
    $displays = array_filter($this
      ->getOption('displays'));
    if (count($displays) > 1) {
      $attach_to = $this
        ->t('Multiple displays');
    }
    elseif (count($displays) == 1) {
      $display = array_shift($displays);
      $displays = $this->view->storage
        ->get('display');
      if (!empty($displays[$display])) {
        $attach_to = $displays[$display]['display_title'];
      }
    }
    if (!isset($attach_to)) {
      $attach_to = $this
        ->t('None');
    }
    $options['displays'] = [
      'category' => 'page',
      'title' => $this
        ->t('Attach to'),
      'value' => $attach_to,
    ];
    $options['inline_css'] = [
      'category' => 'page',
      'title' => $this
        ->t('Inline CSS'),
      'value' => !empty($this
        ->getOption('inline_css')) ? $this
        ->t('Yes') : $this
        ->t('No'),
    ];
    $options['file_css'] = [
      'category' => 'page',
      'title' => $this
        ->t('File CSS'),
      'value' => !empty($this
        ->getOption('file_css')) ? $this
        ->getOption('file_css') : $this
        ->t('None'),
    ];
    $dispositions = $this->pdfGenerator
      ->availableDisposition();
    $options['paper_disposition'] = [
      'category' => 'page',
      'title' => $this
        ->t('Disposition'),
      'value' => !empty($this
        ->getOption('paper_disposition')) ? $dispositions[$this
        ->getOption('paper_disposition')] : $this
        ->t('None'),
    ];
    $sizes = $this->pdfGenerator
      ->pageSizes();
    $options['paper_size'] = [
      'category' => 'page',
      'title' => $this
        ->t('Paper size'),
      'value' => !empty($this
        ->getOption('paper_size')) ? $sizes[$this
        ->getOption('paper_size')] : $this
        ->t('None'),
    ];
  }
  /**
   * {@inheritdoc}
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    // It is very important to call the parent function here.
    parent::buildOptionsForm($form, $form_state);
    switch ($form_state
      ->get('section')) {
      case 'title':
        $title = $form['title'];
        // A little juggling to move the 'title' field beyond our checkbox.
        unset($form['title']);
        $form['sitename_title'] = [
          '#type' => 'checkbox',
          '#title' => $this
            ->t('Use the site name for the title'),
          '#default_value' => $this
            ->getOption('sitename_title'),
        ];
        $labels = [
          '' => $this
            ->t('- None -'),
        ];
        $fieldsLabels = $this->view->display_handler
          ->getFieldLabels();
        $fieldsLabels = array_merge($labels, $fieldsLabels);
        $form['field_title'] = [
          '#type' => 'checkbox',
          '#title' => $this
            ->t('Use field value as title'),
          '#default_value' => $this
            ->getOption('field_title'),
        ];
        $form['select_field_title'] = [
          '#type' => 'select',
          '#title' => $this
            ->t('Select field for the title.'),
          '#options' => $fieldsLabels,
          '#default_value' => $this
            ->getOption('select_field_title'),
        ];
        $form['select_field_title']['#states'] = [
          'visible' => [
            ':input[name="field_title"]' => [
              'checked' => TRUE,
            ],
          ],
        ];
        $form['title'] = $title;
        $form['title']['#states'] = [
          'visible' => [
            ':input[name="sitename_title"]' => [
              'checked' => FALSE,
            ],
            ':input[name="field_title"]' => [
              'checked' => FALSE,
            ],
          ],
        ];
        $form['field_title']['#states'] = [
          'visible' => [
            ':input[name="sitename_title"]' => [
              'checked' => FALSE,
            ],
          ],
        ];
        $form['sitename_title']['#states'] = [
          'visible' => [
            ':input[name="field_title"]' => [
              'checked' => FALSE,
            ],
          ],
        ];
        break;
      case 'displays':
        $form['#title'] .= $this
          ->t('Attach to');
        $displays = [];
        foreach ($this->view->storage
          ->get('display') as $display_id => $display) {
          // @todo The display plugin should have display_title and id as well.
          if ($this->view->displayHandlers
            ->has($display_id) && $this->view->displayHandlers
            ->get($display_id)
            ->acceptAttachments()) {
            $displays[$display_id] = $display['display_title'];
          }
        }
        $form['displays'] = [
          '#title' => $this
            ->t('Displays'),
          '#type' => 'checkboxes',
          '#description' => $this
            ->t('The feed icon will be available only to the selected displays.'),
          '#options' => array_map('\\Drupal\\Component\\Utility\\Html::escape', $displays),
          '#default_value' => $this
            ->getOption('displays'),
        ];
        break;
      case 'inline_css':
        $form['inline_css'] = [
          '#title' => $this
            ->t('Inline CSS'),
          '#type' => 'textarea',
          '#description' => $this
            ->t('These styles are attached to the pdf.'),
          '#default_value' => $this
            ->getOption('inline_css'),
        ];
        break;
      case 'file_css':
        $form['file_css'] = [
          '#title' => $this
            ->t('File CSS'),
          '#type' => 'textfield',
          '#description' => $this
            ->t('The file will be read and attached to the pdf.'),
          '#default_value' => $this
            ->getOption('file_css'),
        ];
        break;
      case 'paper_disposition':
        $form['paper_disposition'] = [
          '#title' => $this
            ->t('Disposition'),
          '#type' => 'select',
          '#options' => $this->pdfGenerator
            ->availableDisposition(),
          '#required' => TRUE,
          '#description' => $this
            ->t('The disposition of each page of the PDF.'),
          '#default_value' => $this
            ->getOption('paper_disposition'),
        ];
        break;
      case 'paper_size':
        $form['paper_size'] = [
          '#title' => $this
            ->t('Paper size'),
          '#type' => 'select',
          '#options' => $this->pdfGenerator
            ->pageSizes(),
          '#required' => TRUE,
          '#description' => $this
            ->t('The disposition of each page of the PDF.'),
          '#default_value' => !empty($this
            ->getOption('paper_size')) ? $this
            ->getOption('paper_size') : 'a4',
        ];
        break;
      case 'path':
        $form['path']['#description'] = $this
          ->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.');
    }
  }
  /**
   * {@inheritdoc}
   */
  public function submitOptionsForm(&$form, FormStateInterface $form_state) {
    parent::submitOptionsForm($form, $form_state);
    $section = $form_state
      ->get('section');
    switch ($section) {
      case 'title':
        if ($form_state
          ->getValue('sitename_title') === 1) {
          $this
            ->setOption('sitename_title', $form_state
            ->getValue('sitename_title'));
        }
        elseif ($form_state
          ->getValue('field_title') === 1) {
          $this
            ->setOption('field_title', $form_state
            ->getValue('field_title'));
          $this
            ->setOption('select_field_title', $form_state
            ->getValue('select_field_title'));
        }
        else {
          $this
            ->setOption('sitename_title', 0);
          $this
            ->setOption('field_title', 0);
        }
        break;
      case 'displays':
        $this
          ->setOption($section, $form_state
          ->getValue($section));
        break;
      case 'inline_css':
        $this
          ->setOption('inline_css', $form_state
          ->getValue('inline_css'));
        break;
      case 'file_css':
        $this
          ->setOption('file_css', $form_state
          ->getValue('file_css'));
        break;
      case 'paper_disposition':
        $this
          ->setOption('paper_disposition', $form_state
          ->getValue('paper_disposition'));
        break;
      case 'paper_size':
        $this
          ->setOption('paper_size', $form_state
          ->getValue('paper_size'));
        break;
    }
  }
  /**
   * {@inheritdoc}
   */
  public function attachTo(ViewExecutable $clone, $display_id, array &$build) {
    $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.
    $clone
      ->setArguments($this->view->args);
    $clone
      ->setDisplay($this->display['id']);
    $clone
      ->buildTitle();
    if ($plugin = $clone->display_handler
      ->getPlugin('style')) {
      $plugin
        ->attachTo($build, $display_id, $clone
        ->getUrl(), $clone
        ->getTitle());
      foreach ($clone->feedIcons as $feed_icon) {
        $this->view->feedIcons[] = $feed_icon;
      }
    }
    // Clean up.
    $clone
      ->destroy();
    unset($clone);
  }
  /**
   * {@inheritdoc}
   */
  public function usesLinkDisplay() {
    return TRUE;
  }
}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 attachments. | 6 | 
| 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:: | 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 static | function | Builds a basic render array which can be properly render cached. Overrides DisplayPluginInterface:: | 1 | 
| 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 | Calculates dependencies for the configured plugin. Overrides PluginBase:: | 3 | 
| 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 | Provides help text for the arguments. Overrides DisplayPluginInterface:: | 1 | 
| 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 | Provides help text for pagers. Overrides DisplayPluginInterface:: | 1 | 
| 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 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 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 | 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. | |
| 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:: | protected | function | Generates a route entry for a given view and display. | 1 | 
| 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:: | public | function | Validate that the plugin is correct and can be saved. Overrides DisplayPluginBase:: | 1 | 
| PathPluginBase:: | public | function | Validate the options form. Overrides DisplayPluginBase:: | 1 | 
| PathPluginBase:: | protected | function | Validates the path of the display. | |
| Pdf:: | protected | property | Whether the display allows the use of AJAX or not. | |
| Pdf:: | protected | property | The date formatter service. | |
| Pdf:: | protected | property | Whether the display allows the use of a pager or not. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Allows displays to attach to other views. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Provide a form to edit options for this plugin. Overrides PathPluginBase:: | |
| Pdf:: | public static | function | Builds up a response with the rendered view as content. Overrides ResponseDisplayPluginInterface:: | |
| Pdf:: | public static | function | Creates an instance of the plugin. Overrides PathPluginBase:: | |
| Pdf:: | public | function | Lists the 'defaultable' sections and what items each section contains. Overrides DisplayPluginBase:: | |
| Pdf:: | protected | function | Overrides \Drupal\views\Plugin\views\display\DisplayPluginBase:defineOptions(). Overrides PathPluginBase:: | |
| Pdf:: | public | function | Executes the view and returns data in the format required. Overrides PathPluginBase:: | |
| Pdf:: | public | function | Returns the display type that this display requires. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Provides the default summary for options in the views UI. Overrides PathPluginBase:: | |
| Pdf:: | public | function | Renders the display for the purposes of a live preview. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Renders this display. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Handle any special handling on the validate form. Overrides PathPluginBase:: | |
| Pdf:: | public | function | Checks to see if the display has some need to link to another display. Overrides DisplayPluginBase:: | |
| Pdf:: | public | function | Constructs a new Date instance. Overrides PathPluginBase:: | |
| 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. | 
