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

Revision 4180, 1.4 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:executable set to *
Line 
1<?php
2        /***********************************************************************************\
3        *  This program is free software; you can redistribute it and/or modify it                 *
4        *  under the terms of the GNU General Public License as published by the                   *
5        *  Free Software Foundation; either version 2 of the License, or (at your                  *
6        *  option) any later version.                                                                                                      *
7        \***********************************************************************************/
8
9        $setup_info['listAdmin']['name'] = 'listAdmin';
10        $setup_info['listAdmin']['title'] = 'Mailman Admin';
11        $setup_info['listAdmin']['version'] = '2.2.1';
12        $setup_info['listAdmin']['app_order'] = 10;
13        $setup_info['listAdmin']['enable'] = 1;
14
15        $setup_info['listAdmin']['author'] = 'Rommel de Brito Cysne (rommel.cysne@serpro.gov.br)';
16        $setup_info['listAdmin']['license']  = 'GPL';
17        $setup_info['listAdmin']['description'] = 'Interface de administracao de listas de e-mail do Mailman.';
18        $setup_info['listAdmin']['note'] = '';
19        $setup_info['listAdmin']['maintainer'] = array(
20                'name'  => 'Rommel Cysne',
21                'email' => 'rommel.cysne@serpro.gov.br'
22        );
23
24
25        /* The hooks this app includes, needed for hooks registration */
26        $setup_info['listAdmin']['hooks'][] = 'admin';
27
28
29        /* Dependencies for this app to work */
30        $setup_info['listAdmin']['depends'][] = array(
31                'appname' => 'phpgwapi',
32                'versions' => Array('2.0','2.1','2.2')
33        );
34?>
Note: See TracBrowser for help on using the repository browser.