Ich schlage vor, ein benutzerdefiniertes Menü-Link-Plugin zu implementieren. Der folgende Code setzt voraus, dass Ihr Modulname ein Beispiel ist .
<?php
namespace Drupal\example\Plugin\Menu;
use Drupal\Core\Database\Connection;
use Drupal\Core\Menu\MenuLinkDefault;
use Drupal\Core\Menu\StaticMenuLinkOverridesInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* A menu link that displays number of points.
*/
class ExampleMenuLink extends MenuLinkDefault {
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $dbConnection;
/**
* Constructs a new points menu link.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Menu\StaticMenuLinkOverridesInterface $static_override
* The static override storage.
* @param \Drupal\Core\Database\Connection $db_connection
* The database connection.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, StaticMenuLinkOverridesInterface $static_override, Connection $db_connection) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $static_override);
$this->dbConnection = $db_connection;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('menu_link.static.overrides'),
$container->get('database')
);
}
/**
* {@inheritdoc}
*/
public function getTitle() {
$count = $this->dbConnection->query('SELECT COUNT(*) FROM {example_points}')->fetchField();
return $this->t('You have (@count) points', ['@count' => $count]);
}
/**
* {@inheritdoc}
*/
public function getCacheTags() {
// Invalidate these tags when number of points is changed.
return ['example.points_count'];
}
}
Wenn Sie den Datenbankdienst nicht einfügen möchten, wird die Klasse viel einfacher.
<?php
namespace Drupal\example\Plugin\Menu;
use Drupal\Core\Menu\MenuLinkDefault;
use Drupal\Core\Menu\StaticMenuLinkOverridesInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* A menu link that displays number of points.
*/
class ExampleMenuLink extends MenuLinkDefault {
/**
* {@inheritdoc}
*/
public function getTitle() {
$count = \Drupal::database()->query('SELECT COUNT(*) FROM {example_points}')->fetchField();
return $this->t('You have (@count) points', ['@count' => $count]);
}
/**
* {@inheritdoc}
*/
public function getCacheTags() {
// Invalidate these tags when number of points is changed.
return ['example.points_count'];
}
}
Als nächstes müssen Sie die Linkdefinition in die Datei example.links.menu.yml einfügen.
example.user_points:
route_name: <front>
menu_name: main
class: Drupal\example\Plugin\Menu\ExampleMenuLink
weight: 30
Das Caching-Problem
Immer wenn die Anzahl der Punkte geändert wird, sollte der Menü-Link-Cache wie folgt ungültig gemacht werden.
\Drupal::service('cache_tags.invalidator')->invalidateTags(['example.points_count']);
Sie müssen den richtigen Ort dafür finden. Wenn die vom beitragenden Modul verwalteten Punkte die Modul-API überprüfen und einen geeigneten Hook ( hook_points_insert () , hook_points_delete () usw.) auswählen .
Da die Anzahl der Punkte für jedes Benutzerkonto einzeln berechnet wird, können Sie die Verwendung von Cache-Tags pro Konto in Betracht ziehen (etwa ['example.points_count.' . $uid]
). Daher bleibt der Cache für Benutzer mit unveränderten Punkten erhalten.
Um Code für das Menü-Link-Plugin zu generieren, habe ich Drupal Code Generator verwendet .