diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 9904f0d..56bf00f 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -124,6 +124,9 @@ function node_help($path, $arg) { case 'admin/structure/types/add': return '

' . t('Individual content types can have different fields, behaviors, and permissions assigned to them.') . '

'; + case 'admin/structure/types/manage/%/form-display': + return '

' . t('Content items can be edited using different form modes. Here, you can define which fields are shown and hidden when %type content is edited in each form mode, and define how the field form widgets are displayed in each form mode.', array('%type' => node_type_get_label($arg[4]))) . '

' ; + case 'admin/structure/types/manage/%/display': return '

' . t('Content items can be displayed using different view modes: Teaser, Full content, Print, RSS, etc. Teaser is a short format that is typically used in lists of multiple content items. Full content is typically used when the content is displayed on its own page.') . '

' . '

' . t('Here, you can define which fields are shown and hidden when %type content is displayed in each view mode, and define how the fields are displayed in each view mode.', array('%type' => node_type_get_label($arg[4]))) . '

'; diff --git a/core/modules/user/user.module b/core/modules/user/user.module index 301f0a1..3ba0d6b 100644 --- a/core/modules/user/user.module +++ b/core/modules/user/user.module @@ -81,7 +81,9 @@ function user_help($path, $arg) { $output .= ''; return $output; case 'admin/config/people/accounts/fields': - return '

' . t('This form lets administrators add, edit, and arrange fields for storing user data.') . '

'; + return '

' . t('This form lets administrators add and edit fields for storing user data.') . '

'; + case 'admin/config/people/accounts/form-display': + return '

' . t('This form lets administrators configure how form fields should be displayed when editing a user profile.') . '

'; case 'admin/config/people/accounts/display': return '

' . t('This form lets administrators configure how fields should be displayed when rendering a user profile page.') . '

'; case 'admin/people/search':