Search

UX metrics that matter
UX metrics that matter

Many organisations have dashboards full of figures on visits, clicks, conversions, time spent or…

Marketing around the
Marketing around the

Summer is full of shared moments: trips, festivals, sporting competitions, outdoor terraces, hot…

Summer changes
Summer changes

When summer arrives, many brands observe the same pattern: some metrics fall, connection times…

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.

Become a member

Get the latest updates straight to your inbox. No spam.

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 ;)
Comments
Comentario