root/trunk/extensions/patXMLRendererYourNameExtension.xml

Revision 62 (checked in by hspath, 3 years ago)

- fixed misplaced comment

  • Property 0 set to
  • Property 1 set to
Line 
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <configuration>
3
4     <!-- information about the extension -->
5     <path name="extension">
6         <configValue type="string" name="namespace">NAMESPACE</configValue>
7         <configValue type="string" name="name">ANYNAME Extension</configValue>
8         <configValue type="string" name="class">NAME OF PHP CLASS</configValue>
9         <configValue type="float" name="version">0.1</configValue>
10         <configValue type="string" name="requiredRandyVersion">0.5</configValue>
11         <configValue type="string" name="description">
12             PLACE A SHORT DESCRIPTION OF YOUR EXTENSION HERE
13         </configValue>
14     </path>
15
16     <!-- information about the author -->
17     <path name="author">
18         <configValue type="string" name="name">YOUR NAME</configValue>
19         <configValue type="string" name="email">YOU@YOURDOMAIN.COM</configValue>
20     </path>
21
22     <!-- infomrmation about the tags -->
23     <path name="tags">
24         <configValue type="array" name="list">
25
26
27             <!-- repeat this section for all of your tags-->
28             <!-- body -->
29             <configValue type="array" name="NAMEOFTAG">
30                 <configValue type="string" name="tag">
31                     DESCRIPTION OF THE TAG.
32                 </configValue>
33                 <configValue type="string" name="help">
34                     ADDITIONAL HELP FOR THE TAG.
35                 </configValue>
36                 <configValue type="string" name="cdata">
37                     DESCRIBE WHAT THE USER SHOULD PLACE BETWEEN THE TAGS.
38                 </configValue>
39                
40                 <configValue type="array" name="attribs">
41                    
42                     <!-- repeat for each attribute -->
43                     <configValue type="array" name="ATTRIBUTENAME">
44                         <configValue type="string" name="desc">
45                             DESCRIPTION OF THE ATTRIBUTE
46                         </configValue>
47                         <configValue type="array" name="values">
48                             <!-- repeat for each possible value of the attribute -->
49                             <configValue type="string" name="VALUE">Description of the value</configValue>
50                             <!-- END of repeat value-->
51                         </configValue>
52                     </configValue>
53                     <!-- END of repeat attribute -->
54                    
55                 </configValue>
56                
57             </configValue>
58             <!-- END of repeat tag-->
59
60         </configValue>
61     </path>
62 </configuration>
Note: See TracBrowser for help on using the browser.