function menu_link_help in Menu Link (Field) 7
Implements hook_help().
File
- ./
menu_link.module, line 24
Code
function menu_link_help($path, $arg) {
switch ($path) {
case 'admin/help#menu_link':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t("The Menu link module defines a menu link field type for the Field module. A menu link field may be used to place links into a menu that link to it's entity. See the <a href='@field-help'>Field module help page</a> for more information about fields.", array(
'@field-help' => url('admin/help/field'),
'@filter-help' => url('admin/help/filter'),
)) . '</p>';
return $output;
}
}