Issue #3183766 by guilhermevp, alecsmrekar, paulocs, djsagar, Abhijith S,...
6 unresolved threads
Merge request reports
Activity
added 1 commit
added 1 commit
37 37 * {@inheritdoc} 38 38 */ 39 39 public function summaryTitle() { 40 if (!empty($this->options['offset'])) { 41 return $this->formatPlural($this->options['items_per_page'], 'Mini pager, @count item, skip @skip', 'Mini pager, @count items, skip @skip', ['@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']]); 40 $summary_text = ''; changed this line in version 6 of the diff
37 37 * {@inheritdoc} 38 38 */ 39 39 public function summaryTitle() { 40 if (!empty($this->options['offset'])) { 41 return $this->formatPlural($this->options['items_per_page'], 'Mini pager, @count item, skip @skip', 'Mini pager, @count items, skip @skip', ['@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']]); 40 $summary_text = ''; 41 if ($this->options['items_per_page'] == 0) { 42 if (!empty($this->options['offset'])) { 20 20 class Some extends PagerPluginBase { 21 21 22 22 public function summaryTitle() { 23 if (!empty($this->options['offset'])) { 24 return $this->formatPlural($this->options['items_per_page'], '@count item, skip @skip', '@count items, skip @skip', ['@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']]); 23 $summary_text = ''; 24 if ($this->options['items_per_page'] == 0) { 25 if (!empty($this->options['offset'])) { 69 69 * {@inheritdoc} 70 70 */ 71 71 public function summaryTitle() { 72 if (!empty($this->options['offset'])) { 73 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']]); 72 $summary_text = ''; changed this line in version 6 of the diff
20 20 class Some extends PagerPluginBase { 21 21 22 22 public function summaryTitle() { 23 if (!empty($this->options['offset'])) { 24 return $this->formatPlural($this->options['items_per_page'], '@count item, skip @skip', '@count items, skip @skip', ['@count' => $this->options['items_per_page'], '@skip' => $this->options['offset']]); 23 $summary_text = ''; changed this line in version 6 of the diff
81 81 $this->assertSame('number', $offset->getAttribute('type')); 82 82 $this->assertEquals(0, $offset->getAttribute('min')); 83 83 84 $edit = [ changed this line in version 6 of the diff
added 1496 commits
-
7b3c655a...1a2079a4 - 1494 commits from branch
project:11.x
- 2ed01668 - Merge branch '11.x' into 3183766-views-pager--
- 914faba1 - Implemented feedback and added a unit test
-
7b3c655a...1a2079a4 - 1494 commits from branch
Please register or sign in to reply