commit | author | age
|
48e9c1
|
1 |
<?php |
T |
2 |
|
|
3 |
// Help content iframe source |
08167e
|
4 |
// %l will be replaced by the language code resolved using the 'help_language_map' option |
254e28
|
5 |
$config['help_source'] = 'http://docs.roundcube.net/doc/help/1.0/%l/'; |
08167e
|
6 |
|
TB |
7 |
// Map task/action combinations to deep-links |
|
8 |
// Use '<task>/<action>' or only '<task>' strings as keys |
|
9 |
// The values will be appended to the 'help_source' URL |
bcedf0
|
10 |
$config['help_index_map'] = array( |
c795d5
|
11 |
'login' => 'login.html', |
TB |
12 |
'mail' => 'mail/index.html', |
|
13 |
'mail/compose' => 'mail/compose.html', |
|
14 |
'addressbook' => 'addressbook/index.html', |
|
15 |
'settings' => 'settings/index.html', |
|
16 |
'settings/preferences' => 'settings/preferences.html', |
|
17 |
'settings/folders' => 'settings/folders.html', |
|
18 |
'settings/identities' => 'settings/identities.html', |
08167e
|
19 |
); |
TB |
20 |
|
|
21 |
// Map to translate Roundcube language codes into help document languages |
|
22 |
// The '*' entry will be used as default |
bcedf0
|
23 |
$config['help_language_map'] = array('*' => 'en_US'); |
08167e
|
24 |
|
TB |
25 |
// Enter an absolute URL to a page displaying information about this webmail |
|
26 |
// Alternatively, create a HTML file under <this-plugin-dir>/content/about.html |
bcedf0
|
27 |
$config['help_about_url'] = null; |
08167e
|
28 |
|
TB |
29 |
// Enter an absolute URL to a page displaying information about this webmail |
|
30 |
// Alternatively, put your license text to <this-plugin-dir>/content/license.html |
bcedf0
|
31 |
$config['help_license_url'] = null; |
08167e
|
32 |
|
TB |
33 |
// Determine whether to open the help in a new window |
bcedf0
|
34 |
$config['help_open_extwin'] = false; |
08167e
|
35 |
|
b9ac6e
|
36 |
// URL to additional information about CSRF protection |
TB |
37 |
$config['help_csrf_info'] = null; |