TestThemeNegotiator.php

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php
  2. 10 core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php
  3. 11.x core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php

Namespace

Drupal\menu_test\Theme

File

core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php

View source
<?php

namespace Drupal\menu_test\Theme;

use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Theme\ThemeNegotiatorInterface;

/**
 * Tests the theme negotiation functionality.
 *
 * Retrieves the theme key of the theme to use for the current request based on
 * the theme name provided in the URL.
 */
class TestThemeNegotiator implements ThemeNegotiatorInterface {
    
    /**
     * {@inheritdoc}
     */
    public function applies(RouteMatchInterface $route_match) {
        return (bool) $route_match->getParameter('inherited');
    }
    
    /**
     * {@inheritdoc}
     */
    public function determineActiveTheme(RouteMatchInterface $route_match) {
        $argument = $route_match->getParameter('inherited');
        // Test using the variable administrative theme.
        if ($argument == 'use-admin-theme') {
            return \Drupal::config('system.theme')->get('admin');
        }
        elseif ($argument == 'use-test-theme') {
            return 'test_theme';
        }
        elseif ($argument == 'use-fake-theme') {
            return 'fake_theme';
        }
        // For any other value of the URL argument, do not return anything. This
        // allows us to test that returning nothing from a theme negotiation
        // causes the page to correctly fall back on using the main site theme.
    }

}

Classes

Title Deprecated Summary
TestThemeNegotiator Tests the theme negotiation functionality.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.