Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <extension type="module" version="3.3.0" client="site" method="upgrade">
  3.     <name>Hello, World!</name>
  4.     <author>John Doe</author>
  5.     <version>1.0.0</version>
  6.     <description>A simple Hello, World! module.</description>
  7.     <files>
  8.         <filename module="mod_helloworld">mod_helloworld.php</filename>
  9.         <filename>index.html</filename>
  10.         <filename>helper.php</filename>
  11.         <filename>tmpl/default.php</filename>
  12.         <filename>tmpl/index.html</filename>
  13.         <folder>sql</folder>
  14.     </files>
  15.  
  16.     <config>
  17.     </config>
  18.  
  19.     <install>
  20.          <sql>
  21.              <file driver="mysql" charset="utf8">sql/mysql/install.mysql.utf8.sql</file>
  22.              <file driver="sqlazure" charset="utf8">sql/sqlazure/install.sqlazure.utf8.sql</file>
  23.          </sql>
  24.     </install>
  25.  
  26.     <uninstall>
  27.          <sql>
  28.              <file driver="mysql" charset="utf8">sql/mysql/uninstall.mysql.utf8.sql</file>
  29.              <file driver="sqlazure" charset="utf8">sql/sqlazure/uninstall.sqlazure.utf8.sql</file>
  30.          </sql>
  31.     </uninstall>
  32.  
  33.     <update>
  34.         <schemas>
  35.             <schemapath type="mysql">sql/mysql/updates</schemapath>
  36.             <schemapath type="sqlazure">sql/sqlazure/updates</schemapath>
  37.         </schemas>
  38.     </update>
  39. </extension>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement