I am trying to add a help button to the module menu. I have Doing Lots Off R&D, but it crashes. BTW Here is my code
my_first_module.info
name = My Module
description = embedded Video Comment
core = 7.x
my_first_module.module
<?php
function my_first_module_help($path, $arg) {
if ($path == 'admin/help#my_first_module') {
return t('A demonstration module.');
}
}
I have a cleared cache But the link link is not displayed
source
share