blob: 9b73cc0e66067b5bce55b259e0ee398d81601b0d [file] [log] [blame]
<?php
/**
* Copyright (c) 2006, 2008, 2018 Eclipse Foundation.
*
* 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:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
$App = new App();
$Nav = new Nav();
$Theme = $App->getThemeClass();
include ($App->getProjectCommon());
$pageTitle = "Usage Data Collector";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("Eclipse, usage data, usagedata");
$Theme->setPageAuthor("Wayne Beaton");
ob_start();
include ("content/en_" . $App->getScriptName());
$html = ob_get_clean();
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();