From a09093be777af1354761cb8dea1525ef260dc36d Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 24 Jul 2013 17:47:47 +0200 Subject: [PATCH] Issue #2042941 by mondrake: Full pager plugin: reference the 'pager' theme in the annotations. --- .../views/lib/Drupal/views/Plugin/views/pager/Full.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php b/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php index da217522ee8..7229f21946c 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php @@ -19,7 +19,9 @@ use Drupal\Core\Annotation\Translation; * id = "full", * title = @Translation("Paged output, full pager"), * short_title = @Translation("Full"), - * help = @Translation("Paged output, full Drupal style") + * help = @Translation("Paged output, full Drupal style"), + * theme = "pager", + * register_theme = FALSE * ) */ class Full extends SqlBase { @@ -90,7 +92,7 @@ class Full extends SqlBase { 4 => $this->options['tags']['last'], ); return array( - '#theme' => $this->view->buildThemeFunctions('pager'), + '#theme' => $this->themeFunctions(), '#tags' => $tags, '#element' => $this->options['id'], '#parameters' => $input,