Issue #2014821 followup by tim.plunkett: Introduce form modes UI and their configuration entity.
parent
a2732deb18
commit
4b2249807f
|
@ -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]);
|
||||
|
|
Loading…
Reference in New Issue