Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
valencia
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Web
valencia
Commits
9006defd
Commit
9006defd
authored
May 15, 2014
by
Riccardo Padovani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed from footer links with depth >2, added some comments
parent
0ef2cdf7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
9 deletions
+35
-9
template.php
template.php
+35
-9
No files found.
template.php
View file @
9006defd
...
...
@@ -121,30 +121,57 @@ function valencia_preprocess_page( &$vars ) {
$vars
[
'valencia_footer_menu'
]
=
menu_tree_output
(
$main_menu_tree
);
}
/**
* Custom links for footer menu
* Follows http://design.ubuntu.com/web-style-guide/scaffolding#footer
*
* TODO: Remove active class from the link of open page
* This doesn't hurt the layout at the moment, but doesn't follow the
* indications, so can be a problem in the future.
* https://gitlab.com/ubuntu-it-web/valencia/issues/5
*
* TODO: Check if there are > 7 categories, and add footer of type B for
* categories after the 7th
* https://gitlab.com/ubuntu-it-web/valencia/issues/6
*/
function
valencia_links__system_main_menu
(
$vars
)
{
$html
=
'<ul>'
;
$voice_number
=
0
;
// Var with all HTML of the menu
$html
=
'<ul>'
;
// Counter to select first element of every submenu to add class .first
$voice_number
=
0
;
foreach
(
$vars
[
'links'
]
as
$key
=>
$link
)
{
if
(
is_numeric
(
$key
))
{
$sub_menu
=
''
;
foreach
(
$vars
[
'links'
]
as
$key
=>
$link
)
{
// To print every menu voice only one, see Drupal API
if
(
is_numeric
(
$key
))
{
// Store the submenu links
$sub_menu
=
''
;
$link_title
=
$link
[
'#title'
];
// Check for submenu
if
(
!
empty
(
$link
[
'#below'
]))
{
//
Recurse
// Check for submenu
, but only if they are of first level!
if
(
!
empty
(
$link
[
'#below'
])
&&
$link
[
'#original_link'
][
'depth'
]
===
'1'
)
{
//
If there is a submenu create it using the same function
$sub_menu
=
theme
(
'links__system_main_menu'
,
array
(
'links'
=>
$link
[
'#below'
],
));
}
/**
* We have 3 types of link:
* - First level link, they are h2 title, and will be identify for
* by their depth of 1
* - First link of second level menus, they have class .first,
* identified by $voice_number
* - Others links of second level menus
*/
if
(
$link
[
'#original_link'
][
'depth'
]
===
'1'
)
{
// First level menu is h2
$html
.=
'<li><h2>'
.
l
(
$link_title
,
$link
[
'#href'
],
array
(
'html'
=>
'true'
))
.
'</h2>'
.
$sub_menu
.
'</li>'
;
}
else
if
(
$voice_number
===
0
)
{
// The first submenu of every menu has class first
$html
.=
'<li class="first">'
.
l
(
$link_title
,
$link
[
'#href'
],
array
(
'html'
=>
'true'
))
.
$sub_menu
.
'</li>'
;
}
else
{
// Submenu voice
$html
.=
'<li>'
.
l
(
$link_title
,
$link
[
'#href'
],
array
(
'html'
=>
'true'
))
.
$sub_menu
.
'</li>'
;
}
$voice_number
++
;
...
...
@@ -152,7 +179,6 @@ function valencia_links__system_main_menu($vars) {
}
$html
.=
'</ul>'
;
return
$html
;
}
...
...
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