GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/views/src/Plugin/views/pager/ |
Upload File : |
<?php namespace Drupal\views\Plugin\views\pager; use Drupal\Core\Form\FormStateInterface; /** * The plugin to handle full pager. * * @ingroup views_pager_plugins * * @ViewsPager( * id = "full", * title = @Translation("Paged output, full pager"), * short_title = @Translation("Full"), * help = @Translation("Paged output, full Drupal style"), * theme = "pager", * register_theme = FALSE * ) */ class Full extends SqlBase { /** * {@inheritdoc} */ protected function defineOptions() { $options = parent::defineOptions(); // Use the same default quantity that core uses by default. $options['quantity'] = ['default' => 9]; $options['tags']['contains']['first'] = ['default' => $this->t('« First')]; $options['tags']['contains']['last'] = ['default' => $this->t('Last »')]; return $options; } /** * {@inheritdoc} */ public function buildOptionsForm(&$form, FormStateInterface $form_state) { parent::buildOptionsForm($form, $form_state); $form['quantity'] = [ '#type' => 'number', '#title' => $this->t('Number of pager links visible'), '#description' => $this->t('Specify the number of links to pages to display in the pager.'), '#default_value' => $this->options['quantity'], ]; $form['tags']['first'] = [ '#type' => 'textfield', '#title' => $this->t('First page link text'), '#default_value' => $this->options['tags']['first'], '#weight' => -10, ]; $form['tags']['last'] = [ '#type' => 'textfield', '#title' => $this->t('Last page link text'), '#default_value' => $this->options['tags']['last'], '#weight' => 10, ]; } /** * {@inheritdoc} */ public function summaryTitle() { if (!empty($this->options['offset'])) { return $this->formatPlural($this->options['items_per_page'], '@count item, skip @skip', 'Paged, @count items, skip @skip', ['@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']]); } return $this->formatPlural($this->options['items_per_page'], '@count item', 'Paged, @count items', ['@count' => $this->options['items_per_page']]); } /** * {@inheritdoc} */ public function render($input) { // The 0, 1, 3, 4 indexes are correct. See the template_preprocess_pager() // documentation. $tags = [ 0 => $this->options['tags']['first'], 1 => $this->options['tags']['previous'], 3 => $this->options['tags']['next'], 4 => $this->options['tags']['last'], ]; return [ '#theme' => $this->themeFunctions(), '#tags' => $tags, '#element' => $this->options['id'], '#parameters' => $input, '#quantity' => $this->options['quantity'], '#route_name' => !empty($this->view->live_preview) ? '<current>' : '<none>', ]; } }