source: branches/2.2/listAdmin/setup/setup.inc.php @ 3772

Revision 3772, 1.4 KB checked in by niltonneto, 13 years ago (diff)

Ticket #1561 - Alterado e adicionado nome dos módulos no setup.inc.php de cada um.

  • Property svn:executable set to *
RevLine 
[3514]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';
[3772]10        $setup_info['listAdmin']['title'] = 'Mailman Admin';
[3763]11        $setup_info['listAdmin']['version'] = '2.2.000';
[3514]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',
[3548]32                'versions' => Array('2.0','2.1','2.2')
[3514]33        );
34?>
Note: See TracBrowser for help on using the repository browser.