-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_settings.php
38 lines (26 loc) · 1.53 KB
/
module_settings.php
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
<?php
$use_caching = 0; //0 or 1: caching speeds up the output, but can cause troubles.
$use_aliases = 0; //0 or 1: Use the same member in different groups, even on different pages. See help, how it works.
$use_presets = true; //on options-page: Use the javascript-presets
$use_getfrom = true; //on options-page: get values from another section with javascript.
$html_allowed = 2;
// 0: no HTML in fields. Special chars are converted with htmlspecialchars();
// 1: You can use html. Chars will not get converted.
// 2: one WYSIWYG-Editor, no HTML in all other fields (like 0)
// 3: like 2, but 2 WYSIWYG-Editors
$hide_email_default = 0; //0=Default, 1: Mail-adresses in field 'm_link' are hidden with Javascript.
//Picture:
$show_picture = 1;
$pic_loc_default = '/members'; //Default
$defaultextensions = 'gif jpg png jpeg';
//the order of the fields on modify-member page:
$memberfieldorder = 'short1,long1,short2,long2,memberpage_id,link';
$use_frontend_cssjs = 0; //0: no (default with WB 2.7 up), 1: link, 2: embed
$noadmin_nooptions = 0; //0: no, 1: only the admin may change settings
$paramdelimiter = '&'; //use '&' in special cases
//-------------------------------------------------------------
//Various:
$block_tag = 'div'; //Fields like {SHORT1} have an output with a complete tag and classes.
$backslash_to_br = 1; //Short-fields only: Backslash \ gets <br/>
$previewpic_wha = 'width="150" alt="preview"'; //attribute of the preview pic (modify-member)
?>