You are here

PdfTable.php in PDF Generator 8

Same filename and directory in other branches
  1. 2.0.x src/Plugin/views/style/PdfTable.php

File

src/Plugin/views/style/PdfTable.php
View source
<?php

namespace Drupal\pdf_generator\Plugin\views\style;

use Drupal\views\Plugin\views\style\Table;

/**
 * Default style plugin to render an RSS feed.
 *
 * @ingroup views_style_plugins
 *
 * @ViewsStyle(
 *   id = "pdf_generator_views_style_table",
 *   title = @Translation("PDF table style"),
 *   help = @Translation("Generates an PDF."),
 *   theme = "views_view_table",
 *   display_types = {"normal"}
 * )
 */
class PdfTable extends Table {
  use PdfTrait;

}

Classes

Namesort descending Description
PdfTable Default style plugin to render an RSS feed.