source: companies/celepar/admin/setup/setup.inc.php @ 763

Revision 763, 1.8 KB checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Administration                                              *
4        * http://www.egroupware.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
13        $setup_info['admin']['name']      = 'admin';
14        $setup_info['admin']['version']   = '1.0.0';
15        $setup_info['admin']['app_order'] = 1;
16        $setup_info['admin']['tables']    = '';
17        $setup_info['admin']['enable']    = 1;
18
19        $setup_info['admin']['author'][] = array(
20                'name'  => 'eGroupWare coreteam',
21                'email' => 'egroupware-developers@lists.sourceforge.net'
22        );
23
24        $setup_info['admin']['maintainer'][] = array(
25                'name'  => 'eGroupWare coreteam',
26                'email' => 'egroupware-developers@lists.sourceforge.net',
27                'url'   => 'www.egroupware.org'
28        );
29
30        $setup_info['admin']['license']  = 'GPL';
31        $setup_info['admin']['description'] = 'eGroupWare administration application';
32
33        /* The hooks this app includes, needed for hooks registration */
34        $setup_info['admin']['hooks'] = array(
35                'acl_manager',
36                'add_def_pref',
37                'admin',
38                'after_navbar',
39                'config',
40                'deleteaccount',
41                'view_user' => 'admin.uiaccounts.edit_view_user_hook',
42                'edit_user' => 'admin.uiaccounts.edit_view_user_hook',
43                'sidebox_menu'
44        );
45
46        /* Dependencies for this app to work */
47        $setup_info['admin']['depends'][] = array(
48                'appname' => 'phpgwapi',
49                'versions' => Array('0.9.14','0.9.15','1.0.0')
50        );
51?>
Note: See TracBrowser for help on using the repository browser.