-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmtbl.xml
65 lines (57 loc) · 1.96 KB
/
frmtbl.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"?>
<install type="component" version="1.5.0">
<name>Form Table</name>
<creationDate>09-08-2012</creationDate>
<author>Maria Tsiakmaki</author>
<authorEmail>m.tsiakmaki [at] gmail [dot] com</authorEmail>
<authorUrl></authorUrl>
<license>http://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<version>0.1</version>
<description>A simple form that updates the corresponding table that
lists all the submitted objects.
The object in our example is a list of 'deliverables', and contains
stings, dates, list of options and currency types.
The submit button sends an ajax request, and updates
the table of deliverables.
The user can also edit / delete the submitted deliverables.
</description>
<!-- the message display after install -->
<installfile>install.frmtbl.php</installfile>
<!-- the message display after uninstall -->
<uninstallfile>uninstall.frmtbl.php</uninstallfile>
<!-- Site Main File Copy Section -->
<files folder="site">
<filename>frmtbl.php</filename>
<filename>index.html</filename>
<folder>models</folder>
<folder>views</folder>
<folder>helpers</folder>
<folder>controllers</folder>
<folder>assets</folder>
</files>
<languages folder="site/language">
<language tag="en-GB">en-GB/en-GB.com_frmtbl.ini</language>
</languages>
<install>
<sql>
<file charset="utf8" driver="mysql">install.mysql.sql</file>
</sql>
</install>
<uninstall>
<sql>
<file charset="utf8" driver="mysql">uninstall.mysql.sql</file>
</sql>
</uninstall>
<administration>
<!-- Administration Menu Section -->
<menu>Form Table</menu>
<files folder="admin">
<filename>install.mysql.sql</filename>
<filename>uninstall.mysql.sql</filename>
<folder>tables</folder>
</files>
<!-- languages folder="admin">
<language tag="en-GB">language/en-GB/en-GB.com_frmtbl.ini</language>
</languages-->
</administration>
</install>