This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_projectCommon.php
More file actions
executable file
·38 lines (29 loc) · 1.63 KB
/
_projectCommon.php
File metadata and controls
executable file
·38 lines (29 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
# Set the theme for your project's web pages.
# See the Committer Tools "How Do I" for list of themes
# https://dev.eclipse.org/committers/
# Optional: defaults to system theme
$theme = "solstice";
#include("sidebar.php");
$Menu->setMenuItemList(array());
$Menu->addMenuItem("Home", "/mat", "_self");
$Menu->addMenuItem("Download", "/mat/downloads.php", "_self");
$Menu->addMenuItem("Documentation", "/mat/documentation", "_self");
$Menu->addMenuItem("Support", "/mat/support", "_self");
$Menu->addMenuItem("Developers", "/mat/developers", "_self");
$Nav->setLinkList(null);
$Nav->addNavSeparator("Memory Analyzer", "/mat/");
$Nav->addCustomNav("About This Project", "https://projects.eclipse.org/projects/tools.mat", "_self", 1);
$Nav->addCustomNav("Screenshots", "/mat/about/screenshots.php", "_self", 2);
$Nav->addCustomNav("Getting Started", "https://wiki.eclipse.org/index.php/MemoryAnalyzer", "_self", 2);
$Nav->addCustomNav("Documentation", "/mat/documentation/", "_self", 2);
$Nav->addCustomNav("Blog", "https://memoryanalyzer.blogspot.in/", "_self", 2);
$Nav->addCustomNav("Get Help", "/mat/support/", 2);
$Nav->addNavSeparator("Downloads", "/mat/downloads.php");
$Nav->addCustomNav("Releases", "/mat/downloads.php", "_self", 2);
$Nav->addCustomNav("Nightly Builds", "/mat/snapshotBuilds.php", "_self", 2);
$Nav->addNavSeparator("Developers", "/mat/developers/");
$Nav->addCustomNav("Mailing Lists", "https://dev.eclipse.org/mailman/listinfo/mat-dev", "_self", 2);
$Nav->addCustomNav("View Git", "https://github.com/eclipse-mat/mat", "_self", 2);
$App->Promotion = TRUE;
?>