-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcivimobile.xml
38 lines (38 loc) · 1.1 KB
/
civimobile.xml
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
<?xml version="1.0" encoding="iso-8859-1" ?>
<menu>
<item>
<title>CiviMobile</title>
<path>civicrm/mobile</path>
<page_callback>civimobile::home</page_callback>
<access_callback>1</access_callback>
<is_public>true</is_public>
</item>
<item>
<path>civicrm/mobile/login</path>
<page_callback>civimobile::login</page_callback>
</item>
<item>
<path>civicrm/mobile/logout</path>
<page_callback>civimobile::logout</page_callback>
</item>
<item>
<path>civicrm/mobile/contact</path>
<page_callback>civimobile::contacts</page_callback>
</item>
<item>
<path>civicrm/mobile/participant/checkin</path>
<page_callback>civimobile::participantCheckin</page_callback>
</item>
<item>
<path>civicrm/mobile/survey/contacts</path>
<page_callback>civimobile::surveycontacts</page_callback>
</item>
<item>
<path>civicrm/mobile/survey/interview</path>
<page_callback>civimobile::surveyInterview</page_callback>
</item>
<item>
<path>civicrm/admin/setting/mobile</path>
<page_callback>civimobile_Form_Settings</page_callback>
</item>
</menu>