Hi,
As far as I can tell, when you go to the create content page ("node/add"), the list of node types is sorted alphabetically using the node type. It would be more intuitive and user-friendly to have it sorted by the node type 'name' attribute. For example if you have a node type 'dummy_test_node' with the name set to 'Test node' (see function set-up below), then the list uses the 'dummy_test_node' field rather than 'Test node' when displaying the node types alphabetically. I think the 'name' attribute should be used instead.
function dummy_test_node_info() {
return array('dummy_test_node' => array(
'name' => t('Test node'),
'module' => 'dummy_test',
'description' => t("Test"),
)
);
}
Cheers,
Stella
Comments
Comment #1
marcingy commentedBumping version
Comment #2
anandkp commentedComment #3
mgiffordI'm not sure where to change this, but it's looking like it's 8.1.x territory.
Comment #9
cilefen commented