blob: e70042168cbf16cc866ad74ab5d31a11337a20d0 [file] [log] [blame]
gobriend88e0fd2008-05-21 17:56:17 +00001<?php
2/*******************************************************************************
3 * Copyright (c) 2007 Eclipse Foundation and others.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Paul Colton (Aptana)- initial API and implementation
11 * Eclipse Foundation
12*******************************************************************************/
13require("global.php");
14InitPage("login");
15
16$pageTitle = "Babel Project";
17$pageKeywords = "translation,language,nlpack,pack,eclipse,babel";
18
atoulmea4adf8e2009-01-27 19:01:35 +000019global $addon;
20$addon->callHook("head");
gobriend88e0fd2008-05-21 17:56:17 +000021
22?>
23
24<h1 id="page-message">Welcome to the Babel Project</h1>
25<div id="contentArea">
26
27<h2>Quick Stats</h2>
28<ul id="users-quick-stats">
29 <li>Total Translations: <?= getTotoalNumberOfTranslationsByUser(); ?>
30 <li>Rating of Translations: <?= getOverallRattingofTranslationsbyUser(); ?>
31</ul>
32
33<h2>Your Translation History</h2>
34<ul id="users-translation-history">
35</ul>
36
37<h2>Project that need your help</h2>
38<ul id="projects-need-translations">
39</ul>
40
41
42</div>
43<?php
atoulmea4adf8e2009-01-27 19:01:35 +000044 global $addon;
45 $addon->callHook("footer");
gobriend88e0fd2008-05-21 17:56:17 +000046?>