source: trunk/emailadmin/setup/setup.inc.php @ 4180

Revision 4180, 1.8 KB checked in by niltonneto, 13 years ago (diff)

Ticket #1804 - Corrigido numeração das versões de acordo com o novo modelo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * EGroupWare - EMailAdmin                                                  *
4        * http://www.egroupware.org                                                *
5        * http://www.phpgw.de                                                      *
6        * Author: lkneschke@egroupware.org                                         *
7        * --------------------------------------------                             *
8        *  This program is free software; you can redistribute it and/or modify it *
9        *  under the terms of the GNU General Public License as published by the   *
10        *  Free Software Foundation; either version 2 of the License, or (at your  *
11        *  option) any later version.                                              *
12        \**************************************************************************/
13
14        $setup_info['emailadmin']['name']      = 'emailadmin';
15        $setup_info['emailadmin']['title']     = 'EMailAdmin';
16        $setup_info['emailadmin']['version']   = '2.2.1';
17        $setup_info['emailadmin']['app_order'] = 10;
18        $setup_info['emailadmin']['enable']    = 2;
19
20        $setup_info['emailadmin']['author'] = 'Lars Kneschke';
21        $setup_info['emailadmin']['license']  = 'GPL';
22        $setup_info['emailadmin']['description'] =
23                'A central Mailserver management application for EGroupWare.';
24        $setup_info['emailadmin']['note'] =
25                '';
26        $setup_info['emailadmin']['maintainer'] = array(
27                'name'  => 'Lars Kneschke',
28                'email' => 'lkneschke@linux-at-work.de'
29        );
30
31
32
33        $setup_info['emailadmin']['tables'][]   = 'phpgw_emailadmin';
34       
35        /* The hooks this app includes, needed for hooks registration */
36        #$setup_info['emailadmin']['hooks'][] = 'preferences';
37        $setup_info['emailadmin']['hooks'][] = 'admin';
38
39        /* Dependacies for this app to work */
40        $setup_info['emailadmin']['depends'][] = array(
41                'appname'  => 'phpgwapi',
42                'versions' => Array('2.2')
43        );
44
45
Note: See TracBrowser for help on using the repository browser.