我有一个名为hello_world的drupal模块。
我在drupal/web/modules/custom/hello_world
中有一个名为hello_world.info.yml
的信息文件,其中包含:
name: Hello World
description: Hello World module
type: module
core: 8.x
package: Custom
这完美无缺;该模块位于扩展名列表中。
现在我尝试创建一个帮助钩子,所以我使用以下代码在同一个文件夹中创建了一个hello_world.module
文件:
<?php
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function hello_world_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.hello_world':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This is an example module.') . '</p>';
return $output;
break;
}
}
这根本不起作用。帮助页面未显示。
我还尝试在drupal/web/modules/custom/hello_world/src/HelloWOrldCOntroller.php
中使用此控制器创建一个hello world页面:
<?php
namespace Drupal\hello_world\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* Controller for the salutation message.
*/
class HelloWorldController extends ControllerBase
{
/**
* Hello World.
*
* @return string
*/
public function helloWorld()
{
return [
'#markup' => $this->t('Hello World')
];
}
}
此drupal/web/modules/custom/hello_world
中的此路由称为hello_world.routing.yml
:
hello_world.hello:
path: '/hello'
defaults:
_controller:
'\Drupal\hello_world\Controller\HelloWorldController::helloWorld'
_title: 'Our first route'
requirements:
_permission: 'access content'
即使清除缓存后,这也不起作用。正如我所说,hello_world.info.yml
工作得很好,但帮助钩子和控制器/路由器没有。其余的核心模块都有效。如果重要的话,我正在使用Vagrant。
答案 0 :(得分:3)
尝试重新安装模块并清除缓存,路由应该正确,否则会遇到错误
hello_world.hello:
path: '/hello'
defaults:
_controller:'\Drupal\hello_world\Controller\HelloWorldController::helloWorld'
_title: 'Our first route'
requirements:
_permission: 'access content'