Skip to content
Snippets Groups Projects
Commit 0a1e9aa0 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2084907 by clemens.tolboom, chris_hall_hu_cheng, Noe_, discipolo, Xano,...

Issue #2084907 by clemens.tolboom, chris_hall_hu_cheng, Noe_, discipolo, Xano, patrickd, damiankloip, alexpott | Jeff Burnz: Hook_views_pre_render() is broken if your theme implements a base theme.
parent 6c2ed3f1
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php
/**
* @file
* Add hooks for tests to use.
*/
use Drupal\views\ViewExecutable;
/**
* Implements hook_views_pre_render().
*/
function test_basetheme_views_pre_render(ViewExecutable $view) {
// We append the function name to the title for test to check for.
$view->setTitle($view->getTitle() . ":" . __FUNCTION__);
}
/**
* Implements hook_views_post_render().
*/
function test_basetheme_views_post_render(ViewExecutable $view) {
// We append the function name to the title for test to check for.
$view->setTitle($view->getTitle() . ":" . __FUNCTION__);
}
<?php
/**
* @file
* Add hooks for tests to use.
*/
use Drupal\views\ViewExecutable;
/**
* Implements hook_views_pre_render().
*/
function test_subtheme_views_pre_render(ViewExecutable $view) {
// We append the function name to the title for test to check for.
$view->setTitle($view->getTitle() . ":" . __FUNCTION__);
}
/**
* Implements hook_views_post_render().
*/
function test_subtheme_views_post_render(ViewExecutable $view) {
// We append the function name to the title for test to check for.
$view->setTitle($view->getTitle() . ":" . __FUNCTION__);
}
<?php
/**
* @file
* Contains \Drupal\views\Tests\ViewsThemeIntegrationTest.
*/
namespace Drupal\views\Tests;
/**
* As views uses a lot of theme related functionality we need to test these too.
*
* We test against test_basetheme and test_subtheme provided by theme_test
*/
class ViewsThemeIntegrationTest extends ViewTestBase {
/**
* Views used by this test.
*
* @var array
*/
public static $testViews = array('test_page_display');
/**
* Used by WebTestBase::setup()
*
* We need theme_test for testing against test_basetheme and test_subtheme.
*
* @var array
*
* @see \Drupal\simpletest\WebTestBase::setup()
*/
public static $modules = array('views', 'theme_test');
/**
* {@inheritdoc}
*/
public static function getInfo() {
return array(
'name' => 'Views theme integration test',
'description' => 'Tests the Views theme integration.',
'group' => 'Views',
);
}
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->enableViewsTestModule();
}
/**
* Tests for exceptions and successful execution of hook_views_pre_render()
* and hook_views_post_render() in theme and subtheme.
*/
public function testThemedViewPage() {
\Drupal::service('theme_handler')->enable(array('test_basetheme', 'test_subtheme'));
// Make base theme default then test for hook invocations.
\Drupal::config('system.theme')
->set('default', 'test_basetheme')
->save();
$this->assertEqual(\Drupal::config('system.theme')->get('default'), 'test_basetheme');
// Make sure a views rendered page is touched.
$this->drupalGet('test_page_display_200');
$this->assertRaw("test_basetheme_views_pre_render", "Views title changed by test_basetheme.test_basetheme_views_pre_render");
$this->assertRaw("test_basetheme_views_post_render", "Views title changed by test_basetheme.test_basetheme_views_post_render");
// Make sub theme default to test for hook invocation
// from both sub and base theme.
\Drupal::config('system.theme')
->set('default', 'test_subtheme')
->save();
$this->assertEqual(\Drupal::config('system.theme')->get('default'), 'test_subtheme');
// Make sure a views rendered page is touched.
$this->drupalGet('test_page_display_200');
$this->assertRaw("test_subtheme_views_pre_render", "Views title changed by test_usetheme.test_subtheme_views_pre_render");
$this->assertRaw("test_subtheme_views_post_render", "Views title changed by test_usetheme.test_subtheme_views_post_render");
$this->assertRaw("test_basetheme_views_pre_render", "Views title changed by test_basetheme.test_basetheme_views_pre_render");
$this->assertRaw("test_basetheme_views_post_render", "Views title changed by test_basetheme.test_basetheme_views_post_render");
}
}
......@@ -1360,7 +1360,7 @@ public function render($display_id = NULL) {
// Let the themes play too, because pre render is a very themey thing.
if (isset($GLOBALS['base_theme_info']) && isset($GLOBALS['theme'])) {
foreach ($GLOBALS['base_theme_info'] as $base) {
$module_handler->invoke($base, 'views_pre_render', array($this));
$module_handler->invoke($base->name, 'views_pre_render', array($this));
}
$module_handler->invoke($GLOBALS['theme'], 'views_pre_render', array($this));
......@@ -1384,7 +1384,7 @@ public function render($display_id = NULL) {
// Let the themes play too, because post render is a very themey thing.
if (isset($GLOBALS['base_theme_info']) && isset($GLOBALS['theme'])) {
foreach ($GLOBALS['base_theme_info'] as $base) {
$module_handler->invoke($base, 'views_post_render', array($this));
$module_handler->invoke($base->name, 'views_post_render', array($this));
}
$module_handler->invoke($GLOBALS['theme'], 'views_post_render', array($this));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment