Jak utworzyć niestandardowe karty użytkownika?

9

Usiłuję utworzyć nową kartę niestandardową, która będzie wyświetlana na wszystkich trasach, które są potomkami bytu. {Entity_type} .canonical. Próbowałem rozszerzyć klasę DeriverBase, w szczególności przesłaniając metodę getDerivativeDefinitions. Kartę utworzyłem, rozszerzając LocalTaskDefault i przesłaniając metodę getRouteParameters. Zakładka pojawia się, gdy odwiedzasz standardową ścieżkę użytkownika Drupal, taką jak www.mysite.com/user/1/ lub www.mysite.com/user/1/edit. Jednak gdy dodamy nasze nowe niestandardowe trasy użytkowników, takie jak www.mysite.com/user/1/subscribe, nie pojawią się żadne zakładki. Czy istnieje specjalny sposób definiowania zadań menu lokalnego na niestandardowych trasach? Próbka kodu:

 $this->derivatives['recurly.subscription_tab'] = [
  'title' => $this->t('Subscription'),
  'weight' => 5,
  'route_name' => 'recurly.subscription_list',
  'base_route' => "entity.$entity_type.canonical",
];

foreach ($this->derivatives as &$entry) {
  $entry += $base_plugin_definition;
}

Z góry dziękuję za wszelką pomoc.

tflanagan
źródło
Brzmi bardzo blisko tego, co robi devel z jego / devel route / lokalnym zadaniem, sugeruję przyjrzeć się, jak to implementuje.
Berdir
@Berdir to był punkt wyjścia, ale nadal coś mi brakuje.
tflanagan
Czy próbowałeś dodać plik „yourmodule.links.task.yml” z ustawieniami karty niestandardowej?
Andrew,

Odpowiedzi:

7

Jak sugeruje Berdir, możesz przyjrzeć się modułowi Devel i sposobowi jego implementacji. Poniższy kod został „wyodrębniony” z Devel

1) Utwórz trasy

Utwórz plik mymodule.routing.yml wewnątrz i wewnątrz zdefiniuj wywołanie zwrotne trasy (które jest używane do tworzenia tras dynamicznych)

route_callbacks:
  - '\Drupal\mymodule\Routing\MyModuleRoutes::routes'

Utwórz klasę MyModuleRoutes, aby wygenerować dynamiczne trasy w src / Routing

<?php

namespace Drupal\mymodule\Routing;

use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

class MyModuleRoutes implements ContainerInjectionInterface {

  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  public static function create(ContainerInterface $container) {
    return new static(
      $container->get('entity_type.manager')
    );
  }

  public function routes() {
    $collection = new RouteCollection();

    foreach ($this->entityTypeManager->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type->hasLinkTemplate('canonical')) {
        $route = new Route("/mymodule/$entity_type_id/{{$entity_type_id}}");
        $route
          ->addDefaults([
            '_controller' => '\Drupal\mymodule\Controller\MyModuleController::doStuff',
            '_title' => 'My module route title',
          ])
          ->addRequirements([
            '_permission' => 'access mymodule permission',
          ])
          ->setOption('_mymodule_entity_type_id', $entity_type_id)
          ->setOption('parameters', [
            $entity_type_id => ['type' => 'entity:' . $entity_type_id],
          ]);

        $collection->add("entity.$entity_type_id.mymodule", $route);
      }
    }

    return $collection;
  }

}

2) Utwórz dynamiczne zadania lokalne

Utwórz plik mymodule.links.task.yml, a wewnątrz zdefiniuj pochodną

mymodule.tasks:
  class: \Drupal\Core\Menu\LocalTaskDefault
  deriver: \Drupal\mymodule\Plugin\Derivative\MyModuleLocalTasks

Utwórz klasę MyModuleLocalTasks, aby wygenerować dynamiczne trasy w src / Plugin / Derivative

<?php

namespace Drupal\mymodule\Plugin\Derivative;

use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

class MyModuleLocalTasks extends DeriverBase implements ContainerDeriverInterface {

  protected $entityTypeManager;

  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  public static function create(ContainerInterface $container, $base_plugin_id) {
    return new static(
      $container->get('entity_type.manager')
    );
  }

  public function getDerivativeDefinitions($base_plugin_definition) {
    $this->derivatives = array();

    foreach ($this->entityTypeManager->getDefinitions() as $entity_type_id => $entity_type) {
      if ($entity_type->hasLinkTemplate('canonical')) {
        $this->derivatives["$entity_type_id.mymodule_tab"] = [
          'route_name' => "entity.$entity_type_id.mymodule",
          'title' => t('Mymodule title'),
          'base_route' => "entity.$entity_type_id.canonical",
          'weight' => 100,
        ] + $base_plugin_definition;
      }
    }

    return $this->derivatives;
  }

}

3) Utwórz kontroler

Utwórz klasę MyModuleController w src / Controller

namespace Drupal\mymodule\Controller;

use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Routing\RouteMatchInterface;

class MyModuleController extends ControllerBase {

  public function doStuff(RouteMatchInterface $route_match) {
    $output = [];

    $parameter_name = $route_match->getRouteObject()->getOption('_mymodule_entity_type_id');
    $entity = $route_match->getParameter($parameter_name);

    if ($entity && $entity instanceof EntityInterface) {
      $output = ['#markup' => $entity->label()];
    }

    return $output;
  }

}
marco
źródło
3
To było bardzo podobne do tego, co skończyło się wdrażaniem. Przekazywanie interfejsu RouteMatchInterface $ route_match było rozwiązaniem mojego problemu. Stamtąd mój obiekt encji był dostępny dla mojego kontrolera.
tflanagan