gobrien | d88e0fd | 2008-05-21 17:56:17 +0000 | [diff] [blame] | 1 | <?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 | *******************************************************************************/ |
| 13 | require("global.php"); |
| 14 | InitPage("login"); |
| 15 | |
| 16 | $pageTitle = "Babel Project"; |
| 17 | $pageKeywords = "translation,language,nlpack,pack,eclipse,babel"; |
| 18 | |
atoulme | a4adf8e | 2009-01-27 19:01:35 +0000 | [diff] [blame] | 19 | global $addon; |
| 20 | $addon->callHook("head"); |
gobrien | d88e0fd | 2008-05-21 17:56:17 +0000 | [diff] [blame] | 21 | |
| 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 |
atoulme | a4adf8e | 2009-01-27 19:01:35 +0000 | [diff] [blame] | 44 | global $addon; |
| 45 | $addon->callHook("footer"); |
gobrien | d88e0fd | 2008-05-21 17:56:17 +0000 | [diff] [blame] | 46 | ?> |