diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 5dfd2c2..0000000 --- a/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -# local settings # -################# - -sites/default/settings.php -sites/default/files diff --git a/core/modules/link/link.module b/core/modules/link/link.module index 82840b3..e735076 100644 --- a/core/modules/link/link.module +++ b/core/modules/link/link.module @@ -13,8 +13,21 @@ 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'))) . '

'; - return $output; + $output .= '

' . t('The Link module allows you to create fields that contain external URLs and optional link text. See the Field module help and the Field UI help pages for general information on fields and how to create and manage them. For more information, see the online documentation for the Link module.', array('@field' => url('admin/help/field'), '@field_ui' => url('admin/help/field_ui'), '@link_documentation' => 'https://drupal.org/documentation/modules/link')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Managing and displaying link fields') . '
'; + $output .= '
' . t('The settings and the display of the link field can be configured separately. See the Field UI help for more information on how to manage fields and their display.', array('@field_ui' => url('admin/help/field_ui'))) . '
'; + $output .= '
' . t('Adding link text') . '
'; + $output .= '
' . t('To allow the addition of link text to a URL, choose Edit in the Field management tab and select Optional or Required.') . '
'; + $output .= '
' . t('Displaying link text') . '
'; + $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 drop-down menu in the Display management tab. If you only want to display the URL even if link text has been submitted, choose Link as format, and then change its Format settings to display URL only.') . '
'; + $output .= '
' . t('Adding attributes to links') . '
'; + $output .= '
' . t('You can add attributes to links, by changing the Format settings in the Display management tab. Adding rel="nofollow" notifies search engines that links should not be followed.') . '
'; + $output .= '
' . t('Validating URLs') . '
'; + $output .= '
' . t('All links are validated after a link field is filled in. Links need to start with http or https, and they can include anchors or query strings. Other scheme names (for example ftp or git) are not supported.') . '
'; + $output .= '
'; + return $output; } }