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
|
<?php
$homepage = "notes";
$apps = array(
// Image upload application
"image" => array(
"index" => 1,
"delete" => 1,
"upload" => 0,
),
// Account application
"account" => array(
"new" => 0,
),
// Notebook application
"notes" => array(
"index" => 0,
"user" => 0,
"view" => 0,
"new" => 1,
"edit" => 1,
"delete" => 1,
"move" => 1,
"source" => 0,
),
// Studies application
"deck" => array(
"index" => 0,
"new" => 1,
"view" => 0,
// function called for editing
"edit" => 1, // change title, comment
"addent" => 1, // add card
"rment" => 1, // remove card
"edent" => 1, // edit card
"mvent" => 1, // move card
),
"study" => array (
"index" => 1,
"deckadd" => 1,
"deck" => 1,
"deckrm" => 1,
"setrate" => 1,
"setcard" => 1,
),
);
|