Drupal 8自定义模块未显示在块布局中

问题描述 投票:0回答:1

我有一个Drupal 8的自定义块模块。它正在我的本地版本drupal(版本8.7.8)上运行。当我将其上传到Web服务器(版本8.7.11)时,可以启用该模块,但是当我尝试将块放置在块布局页面上时,该模块没有显示。我对Web服务器没有太多控制-文件是通过git存储库上传的,但是我添加的其他模块没有问题。

我的模块只有2个文件:

模块/自定义/ischool_section_title_level_two/ischool_section_title_level_two.info.yml

name: iSchool Section Title Level Two
description: Provides a block that shows the Level Two title, or Level One if there is no Level Two.
core: 8.x
package: Custom
dependencies:
  - block
type: module

modules / custom / ischool_section_title_level_two / src / plugin / block / iSchoolSectionTitlelevel_two.php] >>

<?php

namespace Drupal\ischool_section_title_level_two\Plugin\Block;
use Drupal\Core\Block\BlockBase;

/**
 * Provides a block that shows the Level Two section title, or Level One title if there is no level Two
 *
 * @Block(
 *   id = "ischool_section_title_level_two",
 *   admin_label = @Translation("iSchool Section Title Level Two"),
 *   category = @Translation("Custom"),
 *   context_definitions = {
 *     "node" = @ContextDefinition("entity:node", label = @Translation("Node"))
 *   }
 * )
 */


//code adapted from http://hussainweb.me/an-easier-way-to-get-the-current-node-in-a-block-plugin-in-drupal-8/
//and https://design.briarmoon.ca/tutorials/drupal-8/getting-the-parent-node-of-a-drupal-8-node
class iSchoolSectionTitlelevel_two extends BlockBase {

  public function build() {
    $node = $this->getContextValue('node');
    if (empty($node))  {   
      return [
        '#markup' => "",
      ];
    }

    $L1_Title = $node->getTitle();
    $L2_Title = $node->getTitle();
    $currentNode = $node;

    while (true) {
      $parent_node = $this->getParentNode($currentNode);
      if (empty($parent_node)){
      break;
    }
      $L2_Title = $L1_Title;
      $L1_Title = $parent_node->getTitle();

      $currentNode = $parent_node;
   }

    return [
      '#markup' => $L2_Title,
    ];
  }

  private function getParentNode($node){


    if (empty($node)) return null;
    $menu_link_manager = \Drupal::service('plugin.manager.menu.link');
    $links = $menu_link_manager->loadLinksByRoute('entity.node.canonical', ['node' => $node->id()]);

    // Because loadLinksByRoute() returns an array keyed by a complex id
    // it is simplest to just get the first result by using array_pop().
    /** @var \Drupal\Core\Menu\MenuLinkInterface $link */
    $link = array_pop($links);
    if (empty($link)) return null;



    /** @var \Drupal\Core\Menu\MenuLinkInterface $parent */
     if ($link->getParent() && $parent = $menu_link_manager->createInstance($link->getParent())) {
        if (!method_exists($parent, "getUrlObject")) return null;
        $urlObj = $parent->getUrlObject();
        if (is_null($urlObj)) return null;
        if (!method_exists($urlObj, "getRouteParameters")) return null;
        $route = $urlObj->getRouteParameters();
        if (empty($route)) return null;
        if (!isset($route['node'])) return null;
        $parent_node = \Drupal::entityManager()->getStorage('node')->load($route['node']);
        return $parent_node;
     }
     else return null;
  }

  // cache this block for a definite time.
  public function getCacheMaxAge() {
    return 43200;
  }



}

我有一个Drupal 8的自定义块模块。它正在我的本地版本drupal(版本8.7.8)上运行。当我将其上传到Web服务器(版本8.7.11)时,可以启用该模块,但是它没有启用......

php drupal module block drupal-8
1个回答
0
投票

这是文件夹大写的问题。

© www.soinside.com 2019 - 2024. All rights reserved.