source: branches/2.2/filemanager/setup/setup.inc.php @ 3618

Revision 3618, 2.0 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #1467 - Erro na remocao e instalacao do FileManager? pelo Setup

Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Filemanager                                                 *
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        /* $Id: setup.inc.php 15591 2004-07-02 22:32:53Z ralfbecker $ */
13
14        $setup_info['filemanager']['name']    = 'filemanager';
15        $setup_info['filemanager']['title']   = 'Filemanager';
16        $setup_info['filemanager']['version'] = '2.2.000';
17        $setup_info['filemanager']['app_order'] = 6;
18        $setup_info['filemanager']['enable']  = 1;
19
20
21        $setup_info['filemanager']['author'] = 'eGroupware 1.0';
22        $setup_info['filemanager']['license']  = 'GPL';
23        $setup_info['filemanager']['description'] = 'Great filemanager with good resources.';
24        $setup_info['filemanager']['note'] = 'Bassed on egw filemanager 1.0 changes by Alexandre Felipe Muller de Souza';
25        $setup_info['filemanager']['maintainer'] =  'Alexandre Felipe Muller de Souza <br/>' .
26                                                                                            'Alexandre Luiz Correia <br/> ' .
27                                                                                            'Fernando Porto Correa <br/>' .
28                                                                                            'Rodrigo Souza';
29
30        $setup_info['filemanager']['tables'][] = 'phpgw_vfs_quota';
31        $setup_info['filemanager']['tables'][] = 'phpgw_filemanager_notification';
32
33        /* The hooks this app includes, needed for hooks registration */
34        $setup_info['filemanager']['hooks'] = array
35        (
36                'add_def_pref',
37                'admin',
38                'deleteaccount',
39                'settings',
40                'sidebox_menu',
41                'personalizer',
42                'preferences',
43        );
44
45        /* Dependencies for this app to work */
46        $setup_info['filemanager']['depends'][] = array
47        (
48                 'appname' => 'phpgwapi',
49                 'versions' => array('2.2')
50        );
51?>
Note: See TracBrowser for help on using the repository browser.