blob: faa4ccb34966849aa9ecb0227f2f59de8ced3174 [file] [log] [blame]
<?php
/**
* Copyright (c) 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christopher Guindon (Eclipse Foundation) - initial API and implementation
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
// Set the theme for your project's web pages.
$theme = NULL;
// Define your project-wide Nav bars here.
$Nav = new Nav();
$Nav->addNavSeparator("Users", "/users/");
$Nav->addCustomNav("Community Resources", "//wiki.eclipse.org/Eclipse_Articles,_Tutorials,_Demos,_Books,_and_More", "_self", 1);
$Nav->addCustomNav("Events", "//events.eclipse.org", "_self", 1);
$Nav->addCustomNav("Eclipse Marketplace", "//marketplace.eclipse.org", "_self", 1);
$Nav->addCustomNav("RCP Applications Catalogue", "/resources/?sort=date&category=RCP&type=study", "_self", 1);
$Nav->addCustomNav("Awards &amp; opinions", "/community/awards.php", "_self", 1);
$Nav->addNavSeparator("News","/community/news/");
$Nav->addCustomNav("Eclipse News", "eclipsenews.php", "_self", 1);
$Nav->addCustomNav("Eclipse in the News", "eclipseinthenews.php", "_self", 1);
$Nav->addCustomNav("Eclipse RSS Feeds", "rssfeeds.php", "_self", 1);
$Theme->setNav($Nav);