Issue #2014821 followup by tim.plunkett: Introduce form modes UI and their configuration entity.

8.0.x
Alex Pott 2013-06-27 22:52:30 +01:00
parent a2732deb18
commit 4b2249807f
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ function node_help($path, $arg) {
return '<p>' . t('Individual content types can have different fields, behaviors, and permissions assigned to them.') . '</p>';
case 'admin/structure/types/manage/%/form-display':
return '<p>' . 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]))) . '</p>' ;
$type = entity_load('node_type', $arg[4]);
return '<p>' . 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' => $type->label())) . '</p>' ;
case 'admin/structure/types/manage/%/display':
$type = entity_load('node_type', $arg[4]);