source: contrib/listAdmin/setup/setup.inc.php @ 3312

Revision 3312, 1.3 KB checked in by rafaelraymundo, 14 years ago (diff)

Ticket #1174 - Disponibilização do módulo de Listas(Mailman)

  • 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']['version'] = '2.0.0';
11        $setup_info['listAdmin']['app_order'] = 10;
12        $setup_info['listAdmin']['enable'] = 1;
13
14        $setup_info['listAdmin']['author'] = 'Rommel de Brito Cysne (rommel.cysne@serpro.gov.br)';
15        $setup_info['listAdmin']['license']  = 'GPL';
16        $setup_info['listAdmin']['description'] = 'Interface de administracao de listas de e-mail do Mailman.';
17        $setup_info['listAdmin']['note'] = '';
18        $setup_info['listAdmin']['maintainer'] = array(
19                'name'  => 'Rommel Cysne',
20                'email' => 'rommel.cysne@serpro.gov.br'
21        );
22
23
24        /* The hooks this app includes, needed for hooks registration */
25        $setup_info['listAdmin']['hooks'][] = 'admin';
26
27
28        /* Dependencies for this app to work */
29        $setup_info['listAdmin']['depends'][] = array(
30                'appname' => 'phpgwapi',
31                'versions' => Array('2.0','2.1')
32        );
33?>
Note: See TracBrowser for help on using the repository browser.