source: sandbox/2.4.3-expresso-rest/negrinha/setup/setup.inc.php @ 7368

Revision 7368, 1.7 KB checked in by alexandrecorreia, 12 years ago (diff)

Ticket #3093 - Configuração dos servidores com API REST.

Line 
1<?php
2        /**************************************************************************\
3        * Expresso - Seu Novo Modulo                                               *
4        * http://www.expressolivre.org                                             *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11
12        $setup_info['negrinha']['name']                 = 'negrinha';
13        $setup_info['negrinha']['version']              = '2.4.2';
14        $setup_info['negrinha']['app_order']    = 3;
15        $setup_info['negrinha']['enable']               = 1;
16
17        $setup_info['negrinha']['author']               = 'Expresso Livre';
18        $setup_info['negrinha']['license']      = 'Tipo de licença';
19        $setup_info['negrinha']['description']  = 'Exemplo para composição de um novo modulo';
20        $setup_info['negrinha']['note']                 = 'Note';
21       
22        $setup_info['negrinha']['maintainer']['name']  = 'Nome do Mantenedor';
23        $setup_info['negrinha']['maintainer']['email'] = 'Email do mantenedor';
24
25        /*
26        $setup_info['negrinha']['tables'][] = 'phpgw_tables_app_negrinha';
27        $setup_info['negrinha']['tables'][] = 'phpgw_tables_app_negrinha';
28        $setup_info['negrinha']['tables'][] = 'phpgw_tables_app_negrinha';
29        */
30
31        /* The hooks this app includes, needed for hooks registration */
32        $setup_info['negrinha']['hooks'][] = 'admin';
33
34        /* Dependencies for this app to work */
35        $setup_info['negrinha']['depends']['appname'] = array(
36                 'appname' => 'phpgwapi',
37                 'versions' => Array('2.4.2')
38        );
39       
40?>
Note: See TracBrowser for help on using the repository browser.