ฉันจะเปลี่ยนเส้นทางที่กำหนดโดยโมดูลอื่นได้อย่างไร


14

กล่าวอีกนัยหนึ่ง Drupl 8 มีค่าเท่ากับhook_menu_alter ()คืออะไร

Drupal 8 ยังคงใช้hook_menu ()แต่สำหรับสิ่งที่ฉันเห็นข้อมูลที่ส่งคืนโดย hook จะแตกต่างจาก hook ที่ส่งคืนใน Drupal 7 ตัวอย่างเช่นคำจำกัดความที่กำหนดในuser_menu ()สำหรับผู้ใช้มีดังต่อไปนี้

  $items['user'] = array(
    'title' => 'User account',
    'title callback' => 'user_menu_title',
    'weight' => -10,
    'route_name' => 'user_page',
    'menu_name' => 'account',
  );

คุณสมบัติ route_name เชื่อมโยงกับรายการในไฟล์user.routing.yml

user_page:
  pattern: '/user'
  defaults:
    _content: '\Drupal\user\Controller\UserController::userPage'
  requirements:
    _access: 'TRUE'

สิ่งนี้แตกต่างจากสิ่งที่ทำกับ Symphony และทำให้ฉันสับสนว่าโมดูลสามารถเปลี่ยนเส้นทางที่กำหนดจากผู้ใช้รายอื่นได้อย่างไร

ฟังก์ชั่นเท่านั้นที่ยังคงกล่าวอ้างhook_menu_alter()เป็นmenu_router_build ()drupal_alter()แต่ฟังก์ชั่นที่ยังคงมีโค้ดที่ต้องมีการปรับปรุงเพราะมันยังคงใช้เลิกใช้ในขณะนี้

  // Alter the menu as defined in modules, keys are like user/%user.
  drupal_alter('menu', $callbacks);
  foreach ($callbacks as $path => $router_item) {
    // If the menu item is a default local task and incorrectly references a
    // route, remove it.
    // @todo This may be removed later depending on the outcome of
    // http://drupal.org/node/1889790
    if (isset($router_item['type']) && $router_item['type'] == MENU_DEFAULT_LOCAL_TASK) {
      unset($callbacks[$path]['route_name']);
    }
    // If the menu item references a route, normalize the route information
    // into the old structure. Note that routes are keyed by name, not path,
    // so the path of the route takes precedence.
    if (isset($router_item['route_name'])) {
      $router_item['page callback'] = 'USES_ROUTE';
      $router_item['access callback'] = TRUE;
      $new_path = _menu_router_translate_route($router_item['route_name']);

      unset($callbacks[$path]);
      $callbacks[$new_path] = $router_item;
    }
  }

คำตอบ:


6

ดูการดัดแปลงเส้นทางที่มีอยู่และการเพิ่มเส้นทางใหม่ขึ้นอยู่กับคนแบบไดนามิก ; มันใช้งานได้ดีสำหรับฉันในการลบ / ค้นหาที่จัดการโดยโมดูลการค้นหา ในกรณีของฉันฉันใช้รหัสต่อไปนี้

<?php
/**
 * @file
 * Contains \Drupal\ua_sc_module\Routing\SearchAlterRouteSubscriber.
 */

namespace Drupal\ua_sc_module\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;

/**
 * Listens to the dynamic route events.
 */
class SearchAlterRouteSubscriber extends RouteSubscriberBase {

  /**
   * {@inheritdoc}
   */
  public function alterRoutes(RouteCollection $collection) {
    // Remove the /search route.
    $collection->remove('search.view');
  }

}

12

อนุญาตให้มุมมองที่จะแทนที่รายการเส้นทางที่มีอยู่เพียงแค่ใช้ฟังก์ชั่นที่มีอยู่

หากคุณต้องการเปลี่ยนข้อมูลที่แนบมากับเส้นทางไม่ใช่เมนูเช่นตัวควบคุมที่ใช้จริงหรือข้อกำหนด (สิทธิ์ / บทบาทเป็นต้น) คุณสามารถใช้เหตุการณ์ที่ Drupal จัดหาให้:

  <?php

  use Drupal\Core\Routing\RouteBuildEvent;
  use Drupal\Core\Routing\RoutingEvents;
  use Symfony\Component\EventDispatcher\EventSubscriberInterface;

  class RouteSubscriber implements EventSubscriberInterface {

   /**
    * {@inheritdoc}
    */
   public static function getSubscribedEvents() {
      $events[RoutingEvents::ALTER] = 'alterRoutes';
     return $events;
   }

  /**
   * Alters existing routes.
   *
   * @param \Drupal\Core\Routing\RouteBuildEvent $event
   *   The route building event.
   */
  public function alterRoutes(RouteBuildEvent $event) {
    // Fetch the collection which can be altered.
    $collection = $event->getRouteCollection();
    // The event is fired multiple times so ensure that the user_page route
    // is available.
    if ($route = $collection->get('user_page')) {
      // As example add a new requirement.
      $route->setRequirement('_role', 'anonymous');
    }
  }

  }

นอกจากนี้คุณต้องลงทะเบียนบริการด้วยแท็ก 'event_subscriber' สำหรับคลาสนี้


มีรายละเอียดสำหรับการตั้งค่าการลงทะเบียนบริการในมีการดัดแปลงเส้นทางที่มีอยู่และการเพิ่มเส้นทางใหม่ขึ้นอยู่กับคนแบบไดนามิก
colan

7

ตั้งแต่ฉันถามคำถามนี้ Drupal 8 core เปลี่ยนไปและปัญหาบางอย่างเกี่ยวกับเส้นทางได้รับการแก้ไขแล้ว

hook_menu()ไม่ได้ใช้จาก Drupal 8 อีกต่อไป เส้นทางที่โมดูลใช้นั้นถูกกำหนดไว้ในไฟล์. routing.yml (เช่นuser.routing.yml ) Alter hooks ยังคงใช้อยู่ แต่เนื่องจากhook_menu()ไม่ได้ใช้อีกต่อไปจากแกน Drupal hook_menu_alter()จึงไม่ได้ใช้

ขั้นตอนที่จำเป็นในการเปลี่ยนเส้นทางที่กำหนดจากโมดูลอื่นมีดังต่อไปนี้:

  • กำหนดบริการ

    services:
      mymodule.route_subscriber:
        class: Drupal\mymodule\Routing\RouteSubscriber
        tags:
          - { name: event_subscriber }
  • สร้างคลาสที่ขยายRouteSubscriberBaseคลาส

    namespace Drupal\mymodule\Routing;
    
    use Drupal\Core\Routing\RouteSubscriberBase;
    use Symfony\Component\Routing\RouteCollection;
    
    /**
     * Listens to the dynamic route events.
     */
    class RouteSubscriber extends RouteSubscriberBase {
    
      /**
       * {@inheritdoc}
       */
      protected function alterRoutes(RouteCollection $collection) {
        // Change the route associated with the user profile page (/user, /user/{uid}).
        if ($route = $collection->get('user.page')) {
          $route->setDefault('_controller', '\Drupal\mymodule\Controller\UserController::userPage');
        }
      }
    
    }

โปรดสังเกตว่าเมื่อเทียบกับรุ่นก่อนหน้าของ Drupal 8 จะมีการเปลี่ยนแปลงรายละเอียดบางอย่าง

  • ชื่อเส้นทางเปลี่ยนจากuser_pageเป็นuser.page
  • ข้อกำหนดสำหรับเส้นทางนั้นเปลี่ยนจาก_access: 'TRUE'เป็น_user_is_logged_in: 'TRUE'
  • คุณสมบัติเพื่อตั้งค่าตัวควบคุมของเส้นทางเปลี่ยนจาก_contentเป็น_controller

หากคุณต้องการจับคู่หลายเส้นทางมีวิธีที่สวยงามกว่าการตั้งค่าตัวแปร $ ที่จับคู่เป็นเท็จหรือไม่แล้วทำการวนซ้ำทั้งหมดทีละรายการด้วย$collection->get()? ฉันไม่เห็นวิธีการที่ชัดเจนใด ๆ
William Turrell

@WilliamTurrell คุณจะได้รับArrayIteratorวัตถุที่มีRouteCollection::getIterator(); $collectionที่จะทำให้ง่ายต่อการย้ำกว่าทุกรายการใน นอกจากนี้คุณยังสามารถรับเส้นทางทั้งหมด$collectionด้วยRouteCollection::all()ซึ่งจะส่งกลับอาร์เรย์
kiamlaluno
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.