diff --git a/core/modules/link/link.module b/core/modules/link/link.module index a0d3aaa..87cefb0 100644 --- a/core/modules/link/link.module +++ b/core/modules/link/link.module @@ -15,7 +15,18 @@ function link_help($path, $arg) { case 'admin/help#link': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Link module defines a simple link field type for the Field module. Links are external URLs, can have an optional link text for each link, and they can be formatted when displayed. See the Field module help page for more information about fields.', array('@field-help' => url('admin/help/field'))) . '

'; + $output .= '

' . t('The Link module defines a simple link field type for the Field module. Links are external URLs, can have an optional link text for each link, and they can be formatted when displayed. For more information see the Field module help page, and the online handbook entry for Link module.', array('@field-help' => url('admin/help/field'), '@link' => 'http://drupal.org/documentation/modules/link/')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Allowing link texts') . '
'; + $output .= '
' . t('To allow users to add a link text to a URL, visit the Content types page and click the Manage fields link for the content type. Click the Edit link for your Link field, and then select Optional or Required.', array('@content-types' => url('admin/structure/types'))) . '
'; + $output .= '
' . t('Displaying link texts and/or URLs') . '
'; + $output .= '
' . t('To display the link texts only instead URLs visit the Content types page and click the Display fields link for the content type. Choose the link format from the pulldown menu. To trim the link text, click on the cog and change the number of characters. In order to display only the URL even when a link text has been submitted, click on the cog icon and then check the checkbox URL only.', array('@content-types' => url('admin/structure/types'))) . '
'; + $output .= '
' . t('Adding "nofollow" to links') . '
'; + $output .= '
' . t('To prevent search engines from following the links, visit the Content types page and click the Display fields link for the content type. Click on the cog icon, and check the checkbox nofollow.', array('@content-types' => url('admin/structure/types'))) . '
'; + $output .= '
' . t('Displaying placeholders') . '
'; + $output .= '
' . t('Placeholders are texts that will be shown in the URL and/or the link text field before a value is entered. To set them, visit the Content types page and click the Manage fields link for the content type. Click the Edit link for your Link field, and enter your text in the placeholder fields.', array('@content-types' => url('admin/structure/types'))) . '
'; + $output .= '
'; return $output; } }