diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index 83727c0..a1103eb 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -12,7 +12,7 @@ function node_overview_types() { $types = node_type_get_types(); $names = node_type_get_names(); - $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => '2')); + $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => '4')); $rows = array(); foreach ($names as $key => $name) { @@ -30,6 +30,13 @@ function node_overview_types() { else { $row[] = array('data' => ''); } + + // Manage fields. + $row[] = array('data' => l(t('manage fields'), 'admin/structure/types/manage/' . $type_url_str . '/fields')); + + // Display fields. + $row[] = array('data' => l(t('manage display'), 'admin/structure/types/manage/' . $type_url_str . '/display')); + $rows[] = $row; } }