function url_help in URL field 7
Same name and namespace in other branches
- 8 url.module \url_help()
Implements hook_help().
File
- ./
url.module, line 11 - Provides a URL field type that stores external links with optional titles.
Code
function url_help($path, $arg) {
switch ($path) {
case 'admin/help#url':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The URL module defines a simple link field type for the Field module. Links are external URLs, can have an optional title for each link, and they can be formatted when displayed. See the <a href="@field-help">Field module help page</a> for more information about fields.', array(
'@field-help' => url('admin/help/field'),
)) . '</p>';
return $output;
}
}