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
|
<?php
$tables = array(
'stats_referers' => "
referer C(50) NOTNULL,
hits I8,
last I8
",
'stats_pageviews' => "
stats_day I8 PRIMARY,
pageviews I8
",
'stats_referer_urls' => "
referer_url_id I4 PRIMARY,
referer_url C(4096) NOTNULL
",
'stats_referer_users_map' => "
referer_url_id I4 PRIMARY,
user_id I4 PRIMARY
CONSTRAINT '
, CONSTRAINT `stats_referer_users_url_ref` FOREIGN KEY (`referer_url_id`) REFERENCES `".BIT_DB_PREFIX."stats_referer_urls` (`referer_url_id`)
, CONSTRAINT `stats_referer_users_user_ref` FOREIGN KEY (`user_id`) REFERENCES `".BIT_DB_PREFIX."users_users` (`user_id`) '
",
);
global $gBitInstaller;
foreach( array_keys( $tables ) AS $tableName ) {
$gBitInstaller->registerSchemaTable( STATS_PKG_NAME, $tableName, $tables[$tableName] );
}
$gBitInstaller->registerPackageInfo( STATS_PKG_NAME, array(
'description' => "Stats collects and display information about your site.",
'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>',
) );
// ### Indexes
$indices = array (
'stats_referer_url_idx' => array( 'table' => 'stats_referer_urls', 'cols' => 'referer_url', 'opts' => 'UNIQUE' ),
'stats_referer_map_user_idx' => array( 'table' => 'stats_referer_users_map', 'cols' => 'user_id', 'opts' => NULL ),
);
// 'stats_referer_map_url_idx' => array( 'table' => 'stats_referer_urls', 'cols' => 'referer_url_id', 'opts' => NULL ),
$gBitInstaller->registerSchemaIndexes( STATS_PKG_NAME, $indices );
// ### Sequences
$sequences = array (
'stats_referer_url_id_seq' => array( 'start' => 1 )
);
$gBitInstaller->registerSchemaSequences( STATS_PKG_NAME, $sequences );
// ### Default Preferences
$gBitInstaller->registerPreferences( STATS_PKG_NAME, array(
array(STATS_PKG_NAME, 'stats_referers','y'),
array(STATS_PKG_NAME, 'stats_pageviews','y')
) );
// ### Default UserPermissions
$gBitInstaller->registerUserPermissions( STATS_PKG_NAME, array(
array('p_stats_admin', 'Can admin stats', 'admin', STATS_PKG_NAME),
array('p_stats_view_referer', 'Can view referer stats', 'editors', STATS_PKG_NAME),
array('p_stats_view', 'Can view site stats', 'editors', STATS_PKG_NAME),
) );
|