-
Notifications
You must be signed in to change notification settings - Fork 3
/
OFFLINE.app
90 lines (78 loc) · 2.25 KB
/
OFFLINE.app
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
<?php
// ---------------------------------------------------------------
// $Id: $
$app_desc = array(
"name" => "OFFLINE", //Name
"short_name" => N_("offline management"), //Short name
"description" => N_("offline management"), //long description
"access_free" => "N", //Access free ? (Y,N)
"icon" => "offline.png", //Icon
"displayable" => "Y", //Should be displayed on an app list (Y,N)
"with_frame" => "Y", //Use multiframe ? (Y,N)
"childof" => "ONEFAM" // instance of ONEFAM application
);
$app_acl = array(
array(
"name" => "OFF_DLCLIENT",
"description" =>N_("OFFLINE:access list of clients to download"),
"group_default" =>"Y"),
array(
"name" => "ADMIN",
"description" =>N_("OFFLINE:access client build"),
"group_default" =>"Y"),
array(
"name" => "OFF_UPDATE",
"description" =>N_("OFFLINE:access client update"),
"group_default" =>"Y")
);
$action_desc = array(
array(
"name" => "OFF_ORGANIZER",
"short_name" => N_("interface to organize offline documents"),
"acl" => "ONEFAM_READ",
"root" => "N"
),
array(
"name" => "OFF_DOMAINAPI",
"short_name" => N_("api domains of current user"),
"acl" => "ONEFAM_READ",
"root" => "N"
),
array(
"name" => "OFF_FOLDERLIST",
"short_name" => N_("list documents in space"),
"acl" => "ONEFAM_READ",
"root" => "N"
),
array(
"name" => "OFF_POPUPDOCFOLDER",
"short_name" => N_("list documents in space"),
"acl" => "ONEFAM_READ",
"root" => "N"
),
array(
"name" => "OFF_POPUPLISTFOLDER",
"short_name" => N_("list documents in space"),
"acl" => "ONEFAM_READ",
"root" => "N"
),
array(
"name" => "OFF_DLCLIENT",
"short_name" => N_("OFFLINE:list of clients to download"),
"acl" => "OFF_DLCLIENT",
"root" => "N"
),
array(
"name" => "ADMIN",
"short_name" => N_("OFFLINE:build clients"),
"acl" => "ADMIN",
"root" => "N"
),
array(
"name" => "OFF_UPDATE",
"short_name" => N_("OFFLINE:client update"),
"acl" => "OFF_UPDATE",
"root" => "N"
)
);
?>