diff --git a/core/modules/text/text.module b/core/modules/text/text.module index 91f8913..e8ee48e 100644 --- a/core/modules/text/text.module +++ b/core/modules/text/text.module @@ -35,8 +35,17 @@ function text_help($path, $arg) { case 'admin/help#text': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Text module defines various text field types for the Field module. A text field may contain plain text only, or optionally, may use text filters to securely manage HTML output. Text input fields may be either a single line (text field), multiple lines (text area), or for greater input control, a select box, checkbox, or radio buttons. If desired, the field can be validated, so that it is limited to a set of allowed values. For more inforrmation see the Field module help page for more information about fields.', array('!field-help' => \Drupal::url('help.page', array('name' => 'field')), '!filter-help' => \Drupal::url('help.page', array('name' => 'filter')))) . '

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

' . t('The Text module allows you to create text fields. 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 Text module.', array('!field' => \Drupal::url('help.page', array('name' => 'field')), '!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')), '!text_documentation' => 'https://drupal.org/documentation/modules/text')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Managing and displaying text fields') . '
'; + $output .= '
' . t('The settings and display of the text field can be configured separately. See the Field UI help for more information on how to manage fields and their display.', array('!field_ui' => \Drupal::url('help.page', array('name' => 'field_ui')))) . '
'; + $output .= '
' . t('Using text formats and editors') . '
'; + $output .= '
' . t('With the Text processing options you can restrict the input to Plain textonly, or allow users to formated text. Which options are available to individual users depends on the settings on the Text formats and editors page . If formated text is submitted, you can still display it without the formatting by choosing Plain text as Format on the Manage Display page.', array('!formats' => \Drupal::url('filter.admin_overview'))) . '
'; + $output .= '
' . t('Setting and display the text length') . '
'; + $output .= '
' . t('You can change the number of characters that define the maximum text length in the Field settings when you set up the field. Independent from this maximum length, you can change the size of the field in which content can be entered on the Manage Form Display page. On the Manage Display page you can choose whether to displayed a trimmed version of the text, and if so after how many characters the text should be cut off.') . '
'; + $output .= '
'; + return $output; } }