Add a KPI page.

Change-Id: If3d15a7afbcd53ab20c583298329bdaed632c014
Signed-off-by: Wayne Beaton <wayne.beaton@eclipse-foundation.org>
diff --git a/tools/wg/kpi.php b/tools/wg/kpi.php
new file mode 100755
index 0000000..76579c5
--- /dev/null
+++ b/tools/wg/kpi.php
@@ -0,0 +1,47 @@
+<?php
+/**
+ * Copyright (c) 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/
+ *
+ * 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");
+require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+$App = new App();
+$Nav = new Nav();
+$Menu = new Menu();
+
+require_once dirname(__FILE__) . '/../../classes/common.php';
+mustBeFoundationEmployee();
+
+include($App->getProjectCommon());
+
+ob_start();
+
+$pageKeywords = "";
+$pageTitle = "Eclipse Foundation Project KPIs";
+$pageAuthor = "Wayne Beaton";
+?>
+
+<div id="midcolumn">
+<h1><?= $pageTitle ?></h1>
+
+<div class="homeitem">
+
+<?php include "/home/data/httpd/writable/projects/kpi.html"; ?>
+
+</div>
+</div>
+
+<?php
+$html = ob_get_contents();
+ob_end_clean();
+
+$App->generatePage(null, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
\ No newline at end of file