1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
/**
*
* SourceForge Sitewide Statistics
*
* SourceForge: Breaking Down the Barriers to Open Source Development
* Copyright 1999-2001 (c) VA Linux Systems
* http://sourceforge.net
*
* @version $Id: projects.php 2194 2003-07-10 12:01:19Z tcopeland $
*
*/
require_once('pre.php');
require_once('site_stats_utils.php');
// require you to be a member of the sfstats group (group_id = 11084)
session_require( array('group'=>$sys_stats_group) );
$HTML->header(array('title'=>$Language->getText('stats','title',array($GLOBALS['sys_name']))));
?>
<div align="center">
<h3><?php echo $Language->getText('stats_projects','project_comparision'); ?></h3><br />
</div>
<hr />
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr align="center">
<td><a href="index.php"><?php echo $Language->getText('stats_graph','overview_stats'); ?></a></td>
<td><strong><?php echo $Language->getText('stats_graph','project_stats'); ?></strong></td>
<td><a href="graphs.php"><?php echo $Language->getText('stats_graph','site_graphs'); ?></a></td>
</tr>
</table>
<hr />
<div align="center">
<br /><br />
<?php
stats_site_projects( $report, $orderby, $projects, $trovecatid );
?>
<br /><br />
</div>
<?php
$HTML->footer( array() );
?>
|