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
|
<?php
$formLibertyFeatures = array(
"liberty_display_status" => array(
'label' => 'Display content status',
'note' => 'Display a status selection menu when editing content (not fully developed, experimental feature).',
),
"liberty_cache_pages" => array(
'label' => 'External page cache',
'note' => 'Enabling this will download and cache external pages that are included.',
),
"liberty_cache_images" => array(
'label' => 'External image cache',
'note' => 'Enabling this will download and cache external images that are included.',
),
"liberty_cache_images" => array(
'label' => 'External image cache',
'note' => 'Enabling this will download and cache external images that are included.',
),
);
if( $gBitSystem->isPackageActive( 'quota' ) ) {
$formLibertyFeatures['liberty_quota'] = array(
'label' => 'Quota Usage System',
'note' => 'Limit users\' disk usage.',
);
}
if( $gBitSystem->isPackageActive( 'protector' ) ) {
$formLibertyFeatures['protector_single_group'] = array(
'label' => 'Protector System Single group per content item',
'note' => 'Limit the protector system to asign a content item to a single group. The alternative allows content in multiple groups.',
);
}
$gBitSmarty->assign( 'formLibertyFeatures', $formLibertyFeatures );
$cacheTimes = array(
0 => tra( "(no cache)" ),
60 => "1 ".tra( "minute" ),
300 => "5 ".tra( "minutes" ),
600 => "10 ".tra( "minutes" ),
900 => "15 ".tra( "minutes" ),
1800 => "30 ".tra( "minutes" ),
3600 => "1 ".tra( "hour" ),
7200 => "2 ".tra( "hours" ),
14400 => "4 ".tra( "hours" ),
28800 => "8 ".tra( "hours" ),
60480 => "1 ".tra( "day" ),
);
$gBitSmarty->assign( "cacheTimes", $cacheTimes );
$formCaptcha = array(
"liberty_use_captcha_freecap" => array(
'label' => 'Use Freecap',
'note' => 'Use the Freecap captcha library to create the captcha. This produces nicer and better images than the bitweaver internal captcha method.',
),
"freecap_use_dict" => array(
'label' => 'Use Dictionary',
'note' => 'Freecap can use real words or use random letters. Random letters are more difficult to decipher for humans as well as for bots.',
),
);
$gBitSmarty->assign( 'formCaptcha', $formCaptcha );
$formImageFeatures = array(
"liberty_jpeg_originals" => array(
'label' => 'JPEG Originals',
'note' => 'Automatically create JPEG versions of original images named \'original.jpg\' in the attachment directory with other thumbnails.',
'page' => '',
),
"liberty_png_thumbnails" => array(
'label' => 'PNG Thumbnails',
'note' => 'Automatically generated thumbnails of original images will be saved as PNG images instead of JPEGs. This will preserve transparency in GIF and PNG uploads but such transparency is not well supported in MSIE 6. MSIE 7 mostly works now as do most other browsers.',
'page' => '',
),
);
$gBitSmarty->assign( 'formImageFeatures', $formImageFeatures );
$formValues = array( 'image_processor', 'liberty_attachment_link_format', 'comments_per_page', 'comments_default_ordering', 'comments_default_display_mode' );
if( !empty( $_REQUEST['change_prefs'] ) ) {
$errors = array();
$formFeatures = array_merge( $formLibertyFeatures, $formImageFeatures, $formCaptcha );
foreach( $formFeatures as $item => $data ) {
simple_set_toggle( $item, LIBERTY_PKG_NAME );
}
$gBitSystem->storeConfig('liberty_cache', $_REQUEST['liberty_cache'] );
$gBitSystem->storeConfig('liberty_auto_display_attachment_thumbs', $_REQUEST['liberty_auto_display_attachment_thumbs'] );
if( $_REQUEST['approved_html_tags'] != DEFAULT_ACCEPTABLE_TAGS ) {
$tags = preg_replace( '/\s/', '', $_REQUEST['approved_html_tags'] );
$lastAngle = strrpos( $tags, '>' ) + 1;
if( strlen( $tags ) > 250 || ($lastAngle < strlen( $tags ) ) ) {
$tags = substr( $tags, 0, 250 );
$tags = substr( $tags, 0, $lastAngle );
$errors['warning'] = 'The approved tags list has been shortened. You can only have 250 characters for approved tags.';
}
$gBitSystem->storeConfig('approved_html_tags', $tags , LIBERTY_PKG_NAME );
}
$gBitSmarty->assign_by_ref( 'errors', $errors );
foreach( $formValues as $item ) {
simple_set_value( $item, LIBERTY_PKG_NAME );
}
}
$gBitSmarty->assign( 'thumbSizes', array( '' => 'Off', 'icon'=>tra('Icon'), 'avatar'=>tra('Avatar'), 'small'=>tra('Small'), 'medium'=>tra('Medium'), 'large'=>tra('Large') ) );
$tags = $gBitSystem->getConfig( 'approved_html_tags', DEFAULT_ACCEPTABLE_TAGS );
$gBitSmarty->assign( 'approved_html_tags', $tags );
?>
|