help_hook()Drupal 7 Module Menu上没有Dispaying Help图标

时间:2015-09-28 11:02:01

标签: php drupal drupal-7

我正在尝试在模块菜单上添加帮助按钮。我做了很多关于R& D但是失败了。 BTW这是我的代码

my_first_module.info

name = My Module
description = embedded Video Comment
core = 7.x

my_first_module.module

<?php
/**
 * Implements hook_help().
 */

function my_first_module_help($path, $arg) {
  if ($path == 'admin/help#my_first_module') {
    return t('A demonstration module.');
  }
}
  

我有清除缓存但是帮助链接不会出现

1 个答案:

答案 0 :(得分:0)

我最好的猜测是没有启用帮助模块(来自Core)。