class None

Plugin for views without pagers.

Plugin annotation


@Plugin(
  id = "none",
  title = @Translation("Display all items"),
  help = @Translation("Display all items that this view might find."),
  type = "basic"
)

Hierarchy

Expanded class hierarchy of None

Related topics

12 string references to 'None'
Block::optionsSummary in drupal/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php
Provide the summary for page options in the views UI.
DisplayPluginBase::optionsSummary in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default summary for options in the views UI.
Feed::optionsSummary in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Feed.php
Overrides \Drupal\views\Plugin\views\display\DisplayPluginBase::optionsSummary().
FormTest::testRequiredFields in drupal/core/modules/system/lib/Drupal/system/Tests/Form/FormTest.php
Check several empty values for required forms elements.
language_name in drupal/core/includes/bootstrap.inc
Produced the printed name for a language for display.

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php, line 26
Definition of Drupal\views\Plugin\views\pager\None.

Namespace

Drupal\views\Plugin\views\pager
View source
class None extends PagerPluginBase {
  public function init(ViewExecutable $view, &$display, $options = array()) {
    parent::init($view, $display, $options);

    // If the pager is set to none, then it should show all items.
    $this
      ->set_items_per_page(0);
  }
  public function summaryTitle() {
    if (!empty($this->options['offset'])) {
      return t('All items, skip @skip', array(
        '@skip' => $this->options['offset'],
      ));
    }
    return t('All items');
  }
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['offset'] = array(
      'default' => 0,
    );
    return $options;
  }

  /**
   * Provide the default form for setting options.
   */
  public function buildOptionsForm(&$form, &$form_state) {
    parent::buildOptionsForm($form, $form_state);
    $form['offset'] = array(
      '#type' => 'textfield',
      '#title' => t('Offset'),
      '#description' => t('The number of items to skip. For example, if this field is 3, the first 3 items will be skipped and not displayed.'),
      '#default_value' => $this->options['offset'],
    );
  }
  function use_pager() {
    return FALSE;
  }
  function use_count_query() {
    return FALSE;
  }
  function get_items_per_page() {
    return 0;
  }
  function execute_count_query(&$count_query) {

    // If we are displaying all items, never count. But we can update the count in post_execute.
  }
  public function postExecute(&$result) {
    $this->total_items = count($result);
  }
  public function query() {

    // The only query modifications we might do are offsets.
    if (!empty($this->options['offset'])) {
      $this->view->query
        ->set_offset($this->options['offset']);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
None::buildOptionsForm public function Provide the default form for setting options. Overrides PluginBase::buildOptionsForm
None::defineOptions protected function Information about options for all kinds of purposes will be held here. @code 'option_name' => array( Overrides PluginBase::defineOptions
None::execute_count_query function Execute the count query, which will be done just prior to the query itself being executed. Overrides PagerPluginBase::execute_count_query
None::get_items_per_page function Get how many items per page this pager will display. Overrides PagerPluginBase::get_items_per_page
None::init public function Initialize the plugin. Overrides PagerPluginBase::init
None::postExecute public function Perform any needed actions just after the query executing. Overrides PagerPluginBase::postExecute
None::query public function Modify the query for paging Overrides PagerPluginBase::query
None::summaryTitle public function Return a string to display as the clickable title for the pager plugin. Overrides PagerPluginBase::summaryTitle
None::use_count_query function Determine if a pager needs a count query. Overrides PagerPluginBase::use_count_query
None::use_pager function Determine if this pager actually uses a pager. Overrides PagerPluginBase::use_pager
PagerPluginBase::$current_page property
PagerPluginBase::$total_items property
PagerPluginBase::$usesOptions protected property Overrides Drupal\views\Plugin\Plugin::$usesOptions. Overrides PluginBase::$usesOptions
PagerPluginBase::exposed_form_alter function 1
PagerPluginBase::exposed_form_submit function
PagerPluginBase::exposed_form_validate function 1
PagerPluginBase::get_current_page function Get the current page.
PagerPluginBase::get_offset function Get the page offset, or how many items to skip.
PagerPluginBase::get_pager_id function Get the pager id, if it exists
PagerPluginBase::get_total_items function Get the total number of items.
PagerPluginBase::has_more_records function Determine if there are more records available.
PagerPluginBase::items_per_page_exposed function 1
PagerPluginBase::offset_exposed function 1
PagerPluginBase::pre_execute function Perform any needed actions just prior to the query executing.
PagerPluginBase::pre_render function Perform any needed actions just before rendering.
PagerPluginBase::render function Render the pager. 1
PagerPluginBase::set_current_page function Set the current page. 1
PagerPluginBase::set_items_per_page function Set how many items per page this pager will display.
PagerPluginBase::set_offset function Set the page offset, or how many items to skip.
PagerPluginBase::submitOptionsForm public function Provide the default form form for submitting options Overrides PluginBase::submitOptionsForm
PagerPluginBase::update_page_info function If there are pagers that need global values set, this method can be used to set them. It will be called when the count query is run. 1
PagerPluginBase::uses_exposed function 1
PagerPluginBase::validateOptionsForm public function Provide the default form form for validating options Overrides PluginBase::validateOptionsForm 1
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$definition public property Plugins's definition
PluginBase::$discovery protected property The discovery object.
PluginBase::$displayHandler public property The display object this plugin is for.
PluginBase::$options public property Options for this plugin will be held here.
PluginBase::$plugin_id protected property The plugin_id.
PluginBase::$view public property The top object of a view. 1
PluginBase::additionalThemeFunctions public function Provide a list of additional theme functions for the theme information page
PluginBase::destroy public function Clears a plugin. 2
PluginBase::getAvailableGlobalTokens public function Returns an array of available token replacements.
PluginBase::getDefinition public function Implements Drupal\Component\Plugin\PluginInterface::getDefinition(). Overrides PluginInspectionInterface::getDefinition
PluginBase::getPluginId public function Implements Drupal\Component\Plugin\PluginInterface::getPluginId(). Overrides PluginInspectionInterface::getPluginId
PluginBase::globalTokenForm public function Adds elements for available core tokens to a form.
PluginBase::globalTokenReplace public function Returns a string with any core tokens replaced.
PluginBase::pluginTitle public function Return the human readable name of the display.
PluginBase::setOptionDefaults protected function
PluginBase::themeFunctions public function Provide a full list of possible theme templates used by this style. 1
PluginBase::unpackOptions public function Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away.
PluginBase::usesOptions public function Returns the usesOptions property. 8
PluginBase::validate public function Validate that the plugin is correct and can be saved. 4
PluginBase::__construct public function Constructs a Plugin object. Overrides PluginBase::__construct