blob: 67349b471652f55647f63d4ee21a2cb6d9ec158c [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2010,2015 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
* Christopher Guindon (Eclipse Foundation) - Re-implementation for the new solstice theme
*******************************************************************************/
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
$App = new App();
$Nav = new Nav();
$Menu = new Menu();
include($App->getProjectCommon());
$pageTitle = "Eclipse Membership";
$pageKeywords = "eclipse membership, become a member, membership faq, membership expire";
$pageAuthor = "Christopher Guindon";
// Custom theme variables
$variables = array();
$hide_tips = TRUE;
$hide_faqs = TRUE;
// Place your html content in a file called content/en_pagename.php
ob_start();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
# Generate the web page
$App->PageRSS = "/projects/reviews-rss.php";
$App->generatePage('solstice', $Menu, NULL, $pageAuthor, $pageKeywords, $pageTitle, $html);