UX metrics that matter
Many organisations have dashboards full of figures on visits, clicks, conversions, time spent or…
Search
Many organisations have dashboards full of figures on visits, clicks, conversions, time spent or…
Summer is full of shared moments: trips, festivals, sporting competitions, outdoor terraces, hot…
When summer arrives, many brands observe the same pattern: some metrics fall, connection times…
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
services:
theme.negotiator.mi_modulo:
class: Drupal\mudar_tema\Theme\MiModuloNegotiator
tags:
- { name: theme_negotiator, priority: 10 }
/**
* @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;
}
}
Comments