Як я можу змінити активну тему програмно?


20

Як я можу змінити активну тему Drupal 8 програмно?

У Drupal 6 ми використовували наступний код.

global $custom_theme;
$custom_theme = 'garland';

У Drupal 7 ми використовували hook_custom_theme().

У Drupal 8, який правильний спосіб це зробити?

Відповіді:


22

У Drupal 8 ви використовуєте переговорники тем , які по суті є сервісами, що використовують певний тег. Дивіться тематичні переговори, реалізовані Drupal, щоб зрозуміти, як саме вони працюють; приклад, наведений у записі змін, не оновлюється.

user.services.yml

  theme.negotiator.admin_theme:
    class: Drupal\user\Theme\AdminNegotiator
    arguments: ['@current_user', '@config.factory', '@entity.manager', '@router.admin_context']
    tags:
      - { name: theme_negotiator, priority: -40 }

AdminNegotiator.php

namespace Drupal\user\Theme;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Routing\AdminContext;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Theme\ThemeNegotiatorInterface;

/**
 * Sets the active theme on admin pages.
 */
class AdminNegotiator implements ThemeNegotiatorInterface {

  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $user;

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * The entity manager.
   *
   * @var \Drupal\Core\Entity\EntityManagerInterface
   */
  protected $entityManager;

  /**
   * The route admin context to determine whether a route is an admin one.
   *
   * @var \Drupal\Core\Routing\AdminContext
   */
  protected $adminContext;

  /**
   * Creates a new AdminNegotiator instance.
   *
   * @param \Drupal\Core\Session\AccountInterface $user
   *   The current user.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory.
   * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
   *   The entity manager.
   * @param \Drupal\Core\Routing\AdminContext $admin_context
   *   The route admin context to determine whether the route is an admin one.
   */
  public function __construct(AccountInterface $user, ConfigFactoryInterface $config_factory, EntityManagerInterface $entity_manager, AdminContext $admin_context) {
    $this->user = $user;
    $this->configFactory = $config_factory;
    $this->entityManager = $entity_manager;
    $this->adminContext = $admin_context;
  }

  /**
   * {@inheritdoc}
   */
  public function applies(RouteMatchInterface $route_match) {
    return ($this->entityManager->hasHandler('user_role', 'storage') && $this->user->hasPermission('view the administration theme') && $this->adminContext->isAdminRoute($route_match->getRouteObject()));
  }

  /**
   * {@inheritdoc}
   */
  public function determineActiveTheme(RouteMatchInterface $route_match) {
    return $this->configFactory->get('system.theme')->get('admin');
  }

}

Код досить легко зрозуміти: applies()метод повертається, TRUEколи поточний маршрут є таким, для якого ваш модуль хоче змінити тему; determineActiveTheme()метод повертає ім'я теми машинної теми застосування.

Дивіться також ThemeNegotiator :: deterActiveTheme () не повинен вимагати передачі RouteMatch для можливої ​​зміни аргументів, отриманих від методів, використовуваних переговорниками теми; якщо цей патч застосовано, вам також потрібно буде змінити код переговорів теми.


Чи не слід застосовувати () писати так, як застосовується ($ route_match) у наведеному вище прикладі? Опублікував те саме питання на пов'язаній сторінці do. Спасибі!
Стефанос Петракіс

@StefanosPetrakis Хммм ... Будь-яка поточна реалізація отримує це як параметр, всупереч тому, що говорить запис про зміну.
kiamlaluno

Я оновив відповідь, використовуючи код, котрий Drupal ядро ​​фактично використовує в одному зі своїх тематичних переговорників.
kiamlaluno
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.