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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_stats/index.php,v 1.3 2005/08/01 18:41:26 squareing Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
* $Id: index.php,v 1.3 2005/08/01 18:41:26 squareing Exp $
* @package stats
* @subpackage functions
*/
/**
* required setup
*/
require_once( '../bit_setup_inc.php' );
include_once( STATS_PKG_PATH.'stats_lib.php' );
global $statslib, $gBitSystem;
$gBitSystem->verifyPackage( 'stats' );
$gBitSystem->verifyPermission( 'bit_p_view_stats' );
if (!isset($_REQUEST["days"])) {
$_REQUEST["days"] = 7;
}
$gBitSmarty->assign('pv_chart', 'n');
if (isset($_REQUEST["pv_chart"])) {
$gBitSmarty->assign('pv_chart', 'y');
}
$gBitSmarty->assign('days', $_REQUEST["days"]);
$gBitSmarty->assign('usage_chart', 'n');
if (isset($_REQUEST["chart"])) {
$gBitSmarty->assign($_REQUEST["chart"] . "_chart", 'y');
}
if ($gBitSystem->isPackageActive( 'wiki' ) ) {
$wiki_stats = $statslib->wiki_stats();
} else {
$wiki_stats = false;
}
$gBitSmarty->assign_by_ref('wiki_stats', $wiki_stats);
if ($gBitSystem->isPackageActive( 'imagegals' ) ) {
$igal_stats = $statslib->image_gal_stats();
} else {
$igal_stats = false;
}
$gBitSmarty->assign_by_ref('igal_stats', $igal_stats);
if ($gBitSystem->isPackageActive( 'filegals' ) ) {
$fgal_stats = $statslib->file_gal_stats();
} else {
$fgal_stats = false;
}
$gBitSmarty->assign_by_ref('fgal_stats', $fgal_stats);
if ($gBitSystem->isPackageActive( 'articles' ) ) {
$cms_stats = $statslib->cms_stats();
} else {
$cms_stats = false;
}
$gBitSmarty->assign_by_ref('cms_stats', $cms_stats);
if ($gBitSystem->isPackageActive( 'forums' ) ) {
$forum_stats = $statslib->forum_stats();
} else {
$forum_stats = false;
}
$gBitSmarty->assign_by_ref('forum_stats', $forum_stats);
if ($gBitSystem->isPackageActive( 'blogs' ) ) {
$blog_stats = $statslib->blog_stats();
} else {
$blog_stats = false;
}
$gBitSmarty->assign_by_ref('blog_stats', $blog_stats);
if ($gBitSystem->isPackageActive( 'polls' ) ) {
$poll_stats = $statslib->poll_stats();
} else {
$poll_stats = false;
}
$gBitSmarty->assign_by_ref('poll_stats', $poll_stats);
if ($gBitSystem->isPackageActive( 'faqs' ) ) {
$faq_stats = $statslib->faq_stats();
} else {
$faq_stats = false;
}
$gBitSmarty->assign_by_ref('faq_stats', $faq_stats);
if ($gBitSystem->isPackageActive( 'quizzes' ) ) {
$quiz_stats = $statslib->quiz_stats();
} else {
$quiz_stats = false;
}
$gBitSmarty->assign_by_ref('quiz_stats', $quiz_stats);
$user_stats = $statslib->user_stats();
$gBitSmarty->assign_by_ref('user_stats', $user_stats);
$site_stats = $statslib->site_stats();
$gBitSmarty->assign_by_ref('site_stats', $site_stats);
// Display the template
$gBitSystem->display( 'bitpackage:stats/stats.tpl');
?>
|