blob: 6de32909f04ad6fc88706296bac86df141877a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$formFeaturesBit['stats_referers'] = array(
'label' => 'Referer Statistics',
'note' => 'Records statistics including HTTP_REFERRER',
);
$gBitSmarty->assign( 'formFeaturesBit', $formFeaturesBit );
if( !empty( $_REQUEST['change_prefs'] ) ) {
foreach( $formFeaturesBit as $item => $info ) {
simple_set_toggle( $item, STATS_PKG_NAME );
}
}
?>
|