source: branches/2.5/admin/setup/setup.inc.php @ 8232

Revision 8232, 1.9 KB checked in by douglas, 10 years ago (diff)

Ticket #0000 - Copiadas as alterações do Trunk. Versão final 2.5.1.

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