Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
b1a6f1d6
Commit
b1a6f1d6
authored
Nov 10, 2006
by
drumm
Browse files
#91089
by Steven. Reshuffle the order of menus on their administration page.
parent
f56dd878
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/menu/menu.module
View file @
b1a6f1d6
...
...
@@ -613,7 +613,8 @@ function menu_overview_tree() {
$header
=
array
(
t
(
'Menu item'
),
t
(
'Expanded'
),
array
(
'data'
=>
t
(
'Operations'
),
'colspan'
=>
'3'
));
$output
=
''
;
foreach
(
$root_menus
as
$mid
=>
$title
)
{
// We reverse the root menu to show user created menus first.
foreach
(
array_reverse
(
$root_menus
,
true
)
as
$mid
=>
$title
)
{
$operations
=
array
();
if
(
$menu
[
'items'
][
$mid
][
'type'
]
&
MENU_MODIFIABLE_BY_ADMIN
)
{
$operations
[]
=
l
(
t
(
'Edit'
),
'admin/build/menu/menu/edit/'
.
$mid
);
...
...
@@ -623,7 +624,10 @@ function menu_overview_tree() {
}
$operations
[]
=
l
(
t
(
'Add item'
),
'admin/build/menu/item/add/'
.
$mid
);
$table
=
theme
(
'item_list'
,
$operations
);
$table
.
=
theme
(
'table'
,
$header
,
menu_overview_tree_rows
(
$mid
));
$rows
=
menu_overview_tree_rows
(
$mid
);
$table
.
=
theme
(
'table'
,
$header
,
$rows
?
$rows
:
array
(
array
(
array
(
'data'
=>
t
(
'No menu items defined.'
),
'colspan'
=>
5
))));
$output
.
=
theme
(
'box'
,
check_plain
(
$title
),
$table
);
}
return
$output
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment