1 | <?php |
---|
2 | /**********************************************************************************\ |
---|
3 | * Expresso Administração * |
---|
4 | * by Joao Alfredo Knopik Junior (joao.alfredo@gmail.com, jakjr@celepar.pr.gov.br) * |
---|
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['expressoMail1_2']['name'] = 'expressoMail1_2'; |
---|
13 | $setup_info['expressoMail1_2']['title'] = 'Expresso Mail'; |
---|
14 | $setup_info['expressoMail1_2']['version'] = '2.0.010'; |
---|
15 | $setup_info['expressoMail1_2']['app_order'] = 2; |
---|
16 | $setup_info['expressoMail1_2']['tables'][] = 'phpgw_expressomail_contacts'; |
---|
17 | $setup_info['expressoMail1_2']['tables'][] = 'phpgw_certificados'; |
---|
18 | $setup_info['expressoMail1_2']['enable'] = 1; |
---|
19 | |
---|
20 | $setup_info['expressoMail1_2']['author'] = 'João Alfredo Knopik Junior'. |
---|
21 | ' (joao.alfredo@gmail.com / jakjr@celepar.pr.gov.br)<br>'. |
---|
22 | 'Nilton Emílio Bührer Neto'. |
---|
23 | ' (nilton.neto@gmail.com / niltonneto@celepar.pr.gov.br)'; |
---|
24 | $setup_info['expressoMail1_2']['maintainer'] = 'Empresa ou Instituição onde o seu Expresso está instalado.'; |
---|
25 | $setup_info['expressoMail1_2']['maintainer_email'] = ''; |
---|
26 | |
---|
27 | $setup_info['expressoMail1_2']['license'] = 'GPL'; |
---|
28 | $setup_info['expressoMail1_2']['description'] = 'Módulo de Email, usando metodologia AJAX'; |
---|
29 | |
---|
30 | /* The hooks this app includes, needed for hooks registration */ |
---|
31 | $setup_info['expressoMail1_2']['hooks'][] = 'preferences'; |
---|
32 | $setup_info['expressoMail1_2']['hooks'][] = 'admin'; |
---|
33 | $setup_info['expressoMail1_2']['hooks'][] = 'home'; |
---|
34 | $setup_info['expressoMail1_2']['hooks'][] = 'settings'; |
---|
35 | |
---|
36 | /* Dependencies for this app to work */ |
---|
37 | $setup_info['expressoMail1_2']['depends'][] = array( |
---|
38 | 'appname' => 'phpgwapi', |
---|
39 | 'versions' => Array('2.0') |
---|
40 | ); |
---|
41 | ?> |
---|