diff --git a/core/modules/link/link.module b/core/modules/link/link.module index a0d3aaa..a256c4b 100644 --- a/core/modules/link/link.module +++ b/core/modules/link/link.module @@ -15,7 +15,24 @@ 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. It allows the addition of link fields to any "fieldable" entity (content types, blocks, taxonomy terms, users, etc.). Links are external URLs, can have optional link text, and can be formatted when displayed. They must include the web protocol (http or https) in order to validate during input; other scheme names (ftp, git, etc.) are not supported. Use Entity reference for internal links.
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' => 'https://drupal.org/documentation/modules/link/','@entity-reference' => url(''))) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '

' . t('Configuring field settings') . '

'; + $output .= '

' . t('To configure the settings for a link field, go to the Manage fields page of the entity (e.g. content type) to which the link is attached, and click on the Edit link for your link field. For example, if your link is attached to a content type, visit the Content types page.' , array('@content-types' => url('admin/structure/types'))) . '

'; + $output .= '
'; + $output .= '
' . t('Toggle whether link text can be entered') . '
'; + $output .= '
' . t('To allow the addition of link text to a URL, select Optional or Required.') . '
'; + $output .= '
' . t('Use placeholders') . '
'; + $output .= '
' . t('A placeholder is a short hint that is displayed in a URL or text field before a value is entered, and that helps users to fill in the field correctly. Enter appropriate text in the placeholder fields.') . '
'; + $output .= '
'; + $output .= '

' . t('Configuring display settings') . '

'; + $output .= '

' . t('To configure how a link is displayed, go to Manage display page of the entity to which the link is attached (e.g. content type) and choose the display that you want to change. For example, if your link is attached to a content type, visit the Content types page.', array('@content-types' => url('admin/structure/types'))) . '

'; + $output .= '
'; + $output .= '
' . t('Display URL, link text, or both') . '
'; + $output .= '
' . t('By default, link text is displayed instead of the URL. If you want to display both, choose the appropriate link format from the pull-down menu. If you only want to display the URL even when link text has been submitted, click on the cog icon and check URL only.') . '
'; + $output .= '
' . t('Add attributes to links') . '
'; + $output .= '
' . t('If you want to add attributes to links, click on the cog icon, and check the appropriate boxes. Adding rel="nofollow" notifies search engines that links should not be followed.') . '
'; + $output .= '
'; return $output; } }