diff --git a/modules/field_ui/field_ui.module b/modules/field_ui/field_ui.module index f89c59af9987c40a072d1dcd40fe3d54415fb1fd..43388c36ffbfe8e0698e2b1d7a333ea862e7354c 100644 --- a/modules/field_ui/field_ui.module +++ b/modules/field_ui/field_ui.module @@ -12,15 +12,16 @@ function field_ui_help($path, $arg) { switch ($path) { case 'admin/help#field_ui': - $output = ''; - $output .= '

' . t('The Field UI module provides an administrative interface for adding custom fields to content types, users, comments, and other types of data. In the case of content types, a few fields are provided by default, such as the "Summary and Body" field. The Field UI module lets administrators edit or delete the default fields attached to content, as well as create new fields for storing any additional information. Field configuration is accessible through tabs on the content types administration page. (See the node module help page for more information about content types.)', array('@content-types' => url('admin/content/types'), '@node-help' => url('admin/help/node'))) . '

'; - $output .= '

' . t('When adding a custom field to a content type, you determine its type (whether it will contain text, numbers, lists, etc.) and how it will be displayed (either as a text field or text area, a select box, checkboxes, radio buttons, or an auto-complete text field). A field may have multiple values (i.e., a "person" may have multiple e-mail addresses) or a single value (i.e., an "employee" has a single employee identification number).') . '

'; - $output .= '

' . t('Custom field types may be provided by additional modules. Drupal core includes the following field types:') . '

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

' . t('About') . '

'; + $output .= '

' . t('The Field UI module provides an administrative user interface (UI) for adding custom fields to content types, users, comments, and other types of data. For more information, see the online handbook entry for Field UI module.', array('field-ui' => 'http://drupal.org/handbook/modules/field-ui')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Defining custom fields') . '
'; + $output .= '
' . t('When adding a custom field, you need to determine whether the field type will contain text, numbers, lists, etc., as well as how it will be input (as a text field, text area, select box, checkboxes, radio buttons, etc.). A field may have a single value or multiple values. For example, an employee field might have a single employee identification number, whereas a phone number field might have multiple phone numbers.') . '
'; + $output .= '
' . t('Adding fields to content types') . '
'; + $output .= '
' . t("Some fields are provided by default when you create a content type, such as the Title and Body fields. The Field UI module lets administrators edit or delete the default fields attached to content, as well as create new fields for storing any additional information. Field configuration is accessible through tabs on each specific content type's configuration page, listed on the Content types administration page. See the Node module help page for more information about content types.", array('@content-types' => url('admin/structure/types'), '@node-help' => url('admin/help/node'))) . '
'; + $output .= '
'; return $output; case 'admin/reports/fields':