Drupal 8 cambiar tema Drupal funciona

Cambiar de Tema según URL o Rol de usuario en Drupal 8

En el Drupal 7 había algunas opciones sencillas de implementar esta funcionalidad. Tenías el Admin_theme o el themeKey para cambiar de Tema según tu propia regla. Que yo sepa, estos módulos no tienen una versión oficial para el Drupal 8. Así que he tenido que implementar la funcionalidad en un módulo básico personalizado.

La interfaz ThemeNegotiatorInterface de Drupal 8 proporciona una forma en el que los desarrolladores pueden crear su propia clase para gestionar el cambio de tema.

Así es como me ha funcionado (solo el código):

mi_modulo.info.yml


name: Mi Modulo
description: 'Switches the active theme based on the users or roles.'
type: module
core: 8.x

mi_modulo.services.yml


services:
  theme.negotiator.mi_modulo:
    class: Drupal\mudar_tema\Theme\MiModuloNegotiator
    tags:
      - { name: theme_negotiator, priority: 10 }

MiModuloNegotitor.php




/**
 * @file
 * Contains \Drupal\mi_modulo\Theme\MiModuloNegotiator.
*/

namespace Drupal\mi_modulo\Theme;

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

class MiModuloNegotiator implements ThemeNegotiatorInterface {

    /**
     * @param RouteMatchInterface $route_match
     * @return bool
     */
    public function applies(RouteMatchInterface $route_match)
    {
        return $this->negotiateRoute($route_match) ? true : false;
    }

    /**
     * @param RouteMatchInterface $route_match
     * @return null|string
     */
    public function determineActiveTheme(RouteMatchInterface $route_match)
    {
        return $this->negotiateRoute($route_match) ?: null;
    }

    /**
     * Función responsable por seleccionar un tema
     * @param RouteMatchInterface $route_match
     * @return bool|string
     */
    private function negotiateRoute(RouteMatchInterface $route_match)
    {
        $userRolesArray = \Drupal::currentUser()->getRoles();

        if (in_array("developer", $userRolesArray))
        {
            return 'seven';
        }

        return false;
    }
}

Si tienes alguna duda o pregunta, no dudes ni un minuto ;)

Colaboración, estilo de liderazgo e innovación

Artículo anterior

Talento: El enlace que falta

Siguiente artículo
I help Organizations to use Technology to improve people's lives

También te puede interesar

Drupal 9

Drupal 8

Maquetar en Drupal 7