Answers:
对!只需编辑“导航”菜单(位于/ admin / structure / menu / manage / navigation),然后在“添加内容”下对菜单条目重新排序。现在,当您转到/ node / add时,它们将以您在“导航”菜单中设置的任何顺序显示。下面的示例屏幕截图。在/ node / add上,它们将显示为“基本页面”,然后显示为“文章”。
您必须为此使用自定义模块,因为按字母顺序排列的代码已硬编码到页面回调函数中node_overview_types()
(实际上_node_types_build()
是从该函数中调用它建立的)。
不知道要排序什么是很难给出完整答案的,但是我将框架代码放入:
function MYMODULE_menu_alter(&$items) {
// Override the default page callback for the content types page
$items['admin/structure/types']['page callback'] = 'MYMODULE_node_admin_overview';
}
function MYMODULE_node_admin_overview() {
// Get the normal page build
$default_build = node_overview_types();
// Extract the table rows from the build
$table_rows = $default_build['#rows'];
// Perform an operation on these rows to re-order them for your needs
_some_call_by_reference_sort_function($table_rows);
// Assign the newly ordered rows back to the page build
$default_build['#rows'] = $table_rows;
return $default_build;
}
确保将回调函数保留在主模块文件中,否则,您将不得不file
为原来的菜单项覆盖键,这太麻烦了。
如果您希望能够通过UI更改顺序,则必须实现自己的管理页面。