-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOFFLINE_init.php.in
42 lines (38 loc) · 1.03 KB
/
OFFLINE_init.php.in
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
<?php
/**
* @mainpage Dynacase Offline Server Documentation
* @brief
* @author Anakeen Dynacase Labs
* @version @VERSION@-@RELEASE@
* @date 2011
*
*
* @par Wiki manual:
* The Manual gives you all informations to install and configure offline server domains
* ==> http://www.dynacase.org/modules/dynacase-offline/documentation
*
*
*/
global $app_const;
$app_const= array(
"INIT" => "yes",
"VERSION" => "@VERSION@-@RELEASE@",
"ONEFAM_MIDS"=>"OFFLINEDOMAIN",
"OFFLINE_CLIENT_BUILD_OUTPUT_DIR" => array(
"val" => "share/offline/clients",
"global" => "Y",
"descr" => N_("OFFLINE:Offline client build output dir")
),
"OFFLINE_CLIENT_CUSTOMIZE_DIR" => array(
"val" => "share/offline/customize",
"global" => "Y",
"descr" => N_("OFFLINE:Offline client additional customize dir")
),
"OFFLINE_CLIENT_UPDATE_ENABLED" => array(
"val" => "yes",
"descr" => N_("OFFLINE:Offline client update enabled"),
"kind" => "enum(yes|no)",
"global" => "Y"
)
);
?>