Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
uw_fdsu_theme_resp
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_fdsu_theme_resp
Commits
a9a1e07e
Commit
a9a1e07e
authored
4 years ago
by
Eric Bremner
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4199: using uwService to get the main menu
parent
6750518a
No related branches found
No related tags found
1 merge request
!7
Feature/istwcms 4199 ebremner menu items count
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uw_fdsu_theme_resp.theme
+1
-62
1 addition, 62 deletions
uw_fdsu_theme_resp.theme
with
1 addition
and
62 deletions
uw_fdsu_theme_resp.theme
+
1
−
62
View file @
a9a1e07e
...
...
@@ -102,68 +102,7 @@ function uw_fdsu_theme_resp_preprocess_region(&$variables) {
if
(
$region
==
"header"
)
{
// Get the main menu from the simplify menu module.
$main_menu
=
\Drupal
::
service
(
'simplify_menu.menu_items'
)
->
getMenuTree
(
'main'
);
// Set it to the menu_tree which is done by simplify menu.
$main_menu
=
$main_menu
[
'menu_tree'
];
// Step through the menu and do a few things:
// (a) Remove the Home link (this will be a house icon)
// (b) Add the number of menu items per menu link.
foreach
(
$main_menu
as
$index
=>
$menu
)
{
// If this is the Home link, then remove it.
if
(
$menu
[
'text'
]
==
"Home"
)
{
// Remove the home link.
unset
(
$main_menu
[
$index
]);
}
// If we are not on the home link, then add the number
// of menu items in this menu link.
else
{
// Set the menu_item_count, initially to 0.
$menu_item_count
=
0
;
// If there is a submenu, recursivley call the count function.
if
(
isset
(
$menu
[
'submenu'
])
&&
count
(
$menu
[
'submenu'
])
>
0
)
{
// Call the count function recursively till we have the number of
// menu items.
_uw_fdsu_theme_resp_count_menu_items
(
$menu
,
$menu_item_count
);
// Now that we have a count of the number of menu items, we need to
// increment it by one as the main menu will also contain a link
// to the parent (itself) in the Tray.
// For example, the menu structure will look like:
// Parent (click box in the menu)
// Parent (link to the the Parent)
// Child #1
// Grandchild #1-1
// Grandchild #1-2
// Child #2
// Child #3
// Grandchild #3-1
// Great grandchild #3-1-1
// Great grandchild #3-1-2
// Grandchild #3-2
// Grandchild #3-3
// Great grandchild #3-3-1
// So it should with the recursive function it will return 11,
// however as we are printing the parent again in the tray, we
// actually need 12, so hence the increase by1.
$main_menu
[
$index
][
'menu_items_count'
]
=
$menu_item_count
+
1
;
}
// If there are no submenus, the count is 0, there will be no tray.
else
{
// Set the number of items count, which is 0.
$main_menu
[
$index
][
'menu_items_count'
]
=
$menu_item_count
;
}
}
}
$main_menu
=
\Drupal
::
service
(
'uw_cfg_common.uw_service'
)
->
uwGetMenu
(
'main'
);
// Set the main menu variable.
$variables
[
'main_menu'
]
=
$main_menu
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment