-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.xml
65 lines (58 loc) · 1.83 KB
/
config.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
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
<?xml version="1.0" encoding="utf-8"?>
<config>
<fieldset name="categories" label="PVOKS_CATEGORIES" description="PVOKS_CATEGORIES_DESC">
<field
name="parent_id" type="sql"
label="PVOKS_PARENT_ID"
description="PVOKS_PARENT_ID_DESC"
menuitems="true"
extension="com_pvoks"
view="categories"
query="select id as value, title from #__pvoks_categories union all select 0,' root' order by 2,1"
/>
</fieldset>
<fieldset name="members" label="PVOKS_MEMBERS" description="PVOKS_MEMBERS_DESC">
<field
name="category_id" type="sql"
label="PVOKS_CATEGORY_ID"
description="PVOKS_CATEGORY_ID_DESC"
menuitems="true"
extension="com_pvoks"
view="members"
query="select id as value, title from #__pvoks_categories order by 2,1"
/>
</fieldset>
<fieldset name="questions" label="PVOKS_QUESTIONS" description="PVOKS_QUESTIONS_DESC">
<field
name="category_id" type="sql"
label="PVOKS_CATEGORY_ID"
description="PVOKS_CATEGORY_ID_DESC"
menuitems="true"
extension="com_pvoks"
view="questions"
query="select id as value, title from #__pvoks_categories order by 2,1"
/>
</fieldset>
<fieldset name="acrediteds" label="PVOKS_ACREDITEDS" description="PVOKS_ACREDITEDS_DESC">
<field
name="category_id" type="sql"
label="PVOKS_CATEGORY_ID"
description="PVOKS_CATEGORY_ID_DESC"
menuitems="true"
extension="com_pvoks"
view="acrediteds"
query="select id as value, title from #__pvoks_categories order by 2,1"
/>
</fieldset>
<fieldset name="options" label="PVOKS_OPTIONS" description="PVOKS_OPTIONS_DESC">
<field
name="question_id" type="sql"
label="PVOKS_QUESTION_ID"
description="PVOKS_QUESTION_ID_DESC"
menuitems="true"
extension="com_pvoks"
view="qoptions"
query="select id as value, title from #__pvoks_questions order by 2,1"
/>
</fieldset>
</config>