blob: efc69f45c3d35d4a7512ea5f639488b3b13d4ca5 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2011 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
*******************************************************************************/
$theme = "solstice";
$App->Promotion = TRUE;
$parameters = '';
$separator = '?';
foreach($_GET as $key => $value) {
$parameters .= $separator . $key . '=' . $value;
$separator = '&';
}
$Nav->addNavSeparator("Simultaneous Releases", null);
$Nav->addCustomNav("Project List", "/projects/releases/releases.php$parameters", "_self", 2);
$Nav->addCustomNav("Detailed Descriptions", "/projects/releases/descriptions.php$parameters", "_self", 2);
$Nav->addCustomNav("Status", "/projects/releases/status.php$parameters", "_self", 2);
?>