-First draft of history display

git-svn-id: http://piwigo.org/svn/trunk@537 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
gweltas
2004-09-26 21:24:49 +00:00
parent bb8189ea75
commit 1d4238055a
8 changed files with 527 additions and 140 deletions
+6 -52
View File
@@ -29,63 +29,17 @@ if( !defined("PHPWG_ROOT_PATH") )
die ("Hacking attempt!");
}
include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
$max_pixels = 500;
//------------------------------------------------------------ comment deletion
if ( isset( $_GET['del'] ) and is_numeric( $_GET['del'] ) )
{
$query = 'DELETE FROM '.COMMENTS_TABLE;
$query.= ' WHERE id = '.$_GET['del'];
$query.= ';';
mysql_query( $query );
}
//--------------------------------------------------------- history table empty
if ( isset( $_GET['act'] ) and $_GET['act'] == 'empty' )
{
$query = 'DELETE FROM '.HISTORY_TABLE.';';
mysql_query( $query );
}
// empty link
$url_empty = PHPWG_ROOT_PATH.'admin.php?page=stats';
if (isset($_GET['last_days']))
$url_empty .='&last_days='.$_GET['last_days'];
$url_empty.= '&act=empty';
$url_img_monthly_report = PHPWG_ROOT_PATH.'/admin/images/monthly_visits.img.php';
//----------------------------------------------------- template initialization
$template->set_filenames( array('stats'=>'admin/stats.tpl') );
if ( isset( $_GET['last_days'] ) ) define( 'MAX_DAYS', $_GET['last_days'] );
else define( 'MAX_DAYS', 0 );
foreach ( $conf['last_days'] as $option ) {
$url = $_SERVER['PHP_SELF'].'?last_days='.($option - 1);
$url.= '&page=stats';
$template->assign_block_vars(
'last_day_option',
array(
'OPTION'=>$option,
'T_STYLE'=>(( $option == MAX_DAYS + 1 )?'text-decoration:underline;':''),
'U_OPTION'=>add_session_id( $url )
)
);
}
$template->assign_vars(array(
'L_STAT_LASTDAYS'=>$lang['stats_last_days'],
'L_STAT_DATE'=>$lang['date'],
'L_STAT_LOGIN'=>$lang['login'],
'L_STAT_IP'=>$lang['IP'],
'L_STAT_FILE'=>$lang['file'],
'L_STAT_CATEGORY'=>$lang['category'],
'L_STAT_PICTURE'=>$lang['picture'],
'L_STAT_EMPTY'=>$lang['stats_empty'],
'L_STAT_SEEN'=>$lang['stats_pages_seen'],
'L_STAT_VISITOR'=>$lang['stats_visitors'],
'STAT_EMPTY_URL'=>$url_empty
'L_STAT_TITLE'=>$lang['stats_last_days'],
'L_STAT_MONTHLY_ALT'=>$lang['stats_pages_seen_graph_title'],
'IMG_MONTHLY_REPORT'=>add_session_id($url_img_monthly_report)
));
$tpl = array( 'stats_pages_seen_graph_title', 'stats_visitors_graph_title');
//---------------------------------------------------------------- log history
$days = array();
$max_nb_visitors = 0;
@@ -93,9 +47,9 @@ $max_pages_seen = 0;
$starttime = mktime( 0, 0, 0,date('n'),date('j'),date('Y') );
$endtime = mktime( 23,59,59,date('n'),date('j'),date('Y') );
for ( $i = 0; $i <= MAX_DAYS; $i++ )
//for ( $i = 0; $i <= MAX_DAYS; $i++ )
{
$day = array();
/*$day = array();
$template->assign_block_vars('day',array(
));