| <?php |
| /******************************************************************************* |
| * Copyright (c) 2017 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://eclipse.org/legal/epl-v10.html |
| * |
| * Contributors: |
| * Christopher Guindon (Eclipse Foundation) - Initial implementation |
| *******************************************************************************/ |
| |
| require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); |
| $App = New App(); |
| |
| $Theme = $App->getThemeClass(); |
| |
| $Theme->setPageAuthor('Eclipse Foundation'); |
| $Theme->setPageKeywords('eclipse, download, downloads, mirror, project, plug-ins, plugins, java, ide, swt, refactoring, free java ide, tools, platform, open source, development environment, development, ide'); |
| $Theme->setPageTitle('Eclipse Foundation Demo Schedule'); |
| |
| $App->Promotion = FALSE; |
| |
| // Custom theme variables |
| $variables = array(); |
| $App->setThemeVariables($variables); |
| |
| // Place your html content in a file called content/en_pagename.php |
| ob_start(); |
| include("content/en_index.php"); |
| $html = ob_get_clean(); |
| |
| $Theme->setHtml($html); |
| $Theme->generatePage(); |