~titan-phpdevshell/phpdevshell/main

« back to all changes in this revision

Viewing changes to plugins/RedBeanORM/config/plugin.config.xml

  • Committer: Jason Schoeman
  • Date: 2011-12-06 14:03:32 UTC
  • Revision ID: titan@phpdevshell.org-20111206140332-4ej6qy4b36d3q96s
Crud Added
ORM Added
Control Panel optimized

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
 
2
<!-- Please see http://phpdevshell.org for documentation on plugin config xml files. -->
 
3
<!-- Download DummyPlugin from http://phpdevshell.org for a detailed example plugin. -->
 
4
<!--  This plugin does not contain all the values needed for a normal plugin. -->
 
5
<config type="plugin">
 
6
 
 
7
        <!-- Use a proper plugin name without using special characters. -->
 
8
        <name>ReadBeanPHP</name>
 
9
        
 
10
        <!-- Human readable version number of your plugin. -->
 
11
        <version>2.2.3</version>
 
12
        
 
13
        <!-- a Short description of your plugin. -->
 
14
        <description>Provides full suite of ORM capabilities.</description>
 
15
        
 
16
        <!-- If the plugin/script is modification by you, place the original authors names here. -->
 
17
        <founder>Gabor de Mooij</founder>
 
18
        
 
19
        <!-- Name of the developer for this plugin. -->
 
20
        <author>Jason Schoeman</author>
 
21
        
 
22
        <!-- Email address of the developer for this plugin. -->
 
23
        <email>titan@phpdevshell.org</email>
 
24
        
 
25
        <!-- Plugin developers web address. -->
 
26
        <homepage>http://www.phpdevshell.org</homepage>
 
27
        
 
28
        <!-- Date the plugin was developed, modified. -->
 
29
        <date>21 November 2011</date>
 
30
        
 
31
        <!-- Copyright notice you would like to amend to your plugin. -->
 
32
        <copyright>Licensed New BSD/GPLV2</copyright>
 
33
        
 
34
        <!-- License this plugin is released under. -->
 
35
        <license>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU/LGPL</license>
 
36
        
 
37
        <!-- Detailed information and help for this plugin. -->
 
38
        <info>
 
39
                <![CDATA[
 
40
                        <p>
 
41
                                Data modelling should be easy, agile and fun. It should be easy, because code that no one can understand is barely maintainable. 
 
42
                                It should be agile because people tend to change their minds about almost everything, everyday. 
 
43
                                It should be fun, because what's life without fun? Why should you use industry standard tools instead of the tools that boost your productivity? 
 
44
                                Dare to choose for a different solution! 
 
45
                        </p>
 
46
                ]]>
 
47
        </info>
 
48
 
 
49
        <!-- Version here represents the database version that should be install. -->
 
50
        <!-- If your database version needs no update, this number can stay the same. -->
 
51
        <!-- Upgrades further down will only be executed up to this number. -->
 
52
        <install version="1000">
 
53
                <!--
 
54
                [contains][All query, menu, settings installation tags.]
 
55
            [param][version][int][mandatory][The latest database version in numbers only.]
 
56
            [note][This is how the plugin manager will know to what version upgrade scripts should be executed.]
 
57
            [note][Always keep install maintained to the latest menu, query and setting versions.]
 
58
                -->
 
59
                <queries>
 
60
                </queries>
 
61
                <menus>
 
62
                </menus>
 
63
                <dependencies>
 
64
                </dependencies>
 
65
                <classes>
 
66
                        <class name="orm" alias="PHPDS_orm" plugin="RedBeanORM" rank="last" />
 
67
                </classes>
 
68
        </install>
 
69
        <uninstall>
 
70
                <queries>
 
71
                </queries>
 
72
        </uninstall>
 
73
</config>