-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathask.xml
103 lines (93 loc) · 4.58 KB
/
ask.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="1.6.0" method="upgrade">
<name>com_ask</name>
<creationDate>August 2011</creationDate>
<author>Alexandros D</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://alexd.mplofa.com</authorUrl>
<copyright>Copyright (c) 2011 - Alexandros D</copyright>
<license>GNU - GPL</license>
<!-- The version string is recorded in the components table -->
<version>0.9.0</version>
<!-- The description is optional and defaults to the name -->
<description>A native Joomla 1.6 Component to integrate functionality *SIMILAR* to Y!Answers or Quora</description>
<!-- Runs on install/uninstall/update; New in 1.6 -->
<scriptfile>script.php</scriptfile>
<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
</sql>
<params>
<param name="list_ordering" default="submitted" />
<param name="list_direction" default="DESC" />
<param name="display_stats" default="1" />
<param name="display_filters" default="1" />
<param name="display_gravatars" default="1" />
<param name="defaultQuestionState" default="1" />
<param name="defaultAnswerState" default="1" />
<param name="useDefaultCss" default="1" />
<param name="loglevel" default="0" />
</params>
</install>
<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
</sql>
</uninstall>
<!-- J1.6 UPDATER DATA -->
<update>
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<!-- Site Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /site/ in the package -->
<files folder="site">
<filename>ask.php</filename>
<filename>controller.php</filename>
<filename>custom_logger.php</filename>
<filename>metadata.xml</filename>
<folder>views</folder>
<folder>media</folder>
<folder>models</folder>
<folder>language</folder>
<folder>controllers</folder>
</files>
<administration>
<!-- Administration Menu Section -->
<menu>Questions</menu>
<!-- Administration Main File Copy Section -->
<!-- Note the folder attribute: This attribute describes the folder
to copy FROM in the package to install therefore files copied
in this section are copied from /admin/ in the package -->
<files folder="admin">
<!-- Admin Main File Copy Section -->
<filename>config.xml</filename>
<filename>access.xml</filename>
<filename>ask.php</filename>
<filename>controller.php</filename>
<!-- SQL files section -->
<folder>sql</folder>
<!-- tables files section -->
<folder>tables</folder>
<!-- models files section -->
<folder>models</folder>
<!-- views files section -->
<folder>views</folder>
<!-- controllers files section -->
<folder>controllers</folder>
<!-- helpers files section -->
<folder>helpers</folder>
</files>
<languages folder="admin">
<language tag="en-GB">language/en-GB/en-GB.com_ask.ini</language>
<language tag="en-GB">language/en-GB/en-GB.com_ask.sys.ini</language>
</languages>
<languages folder="admin">
<language tag="fr-FR">language/fr-FR/fr-FR.com_ask.ini</language>
<language tag="fr-FR">language/fr-FR/fr-FR.com_ask.sys.ini</language>
</languages>
</administration>
</extension>