source: trunk/filemanager/setup/setup.inc.php @ 8142

Revision 8142, 2.3 KB checked in by acoutinho, 11 years ago (diff)

Ticket #3443 - Atualizacao de todos os modulos para versao 2.5.1

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.5.1';
17        $setup_info['filemanager']['app_order'] = 6;
18        $setup_info['filemanager']['enable']  = 1;
19
20        $setup_info['filemanager']['author']            = 'eGroupware 1.0';
21        $setup_info['filemanager']['license']           = 'GPL';
22        $setup_info['filemanager']['description']       = 'Great filemanager with good resources.';
23        $setup_info['filemanager']['note']                      = 'Bassed on egw filemanager 1.0 changes by Alexandre Felipe Muller de Souza';
24        $setup_info['filemanager']['maintainer']  = 'Alexandre Felipe Muller de Souza <br/>';
25        $setup_info['filemanager']['maintainer'] .= 'Alexandre Luiz Correia <br/> ';
26        $setup_info['filemanager']['maintainer'] .= 'Fernando Porto Correa <br/>';
27        $setup_info['filemanager']['maintainer'] .= 'Rodrigo Souza<br/></br>';
28    $setup_info['filemanager']['maintainer'] .= 'Coordenador do Projeto : Nilton Emilio Buhrer Neto<br/><br/>';
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.5.1.1')
50        );
51?>
Note: See TracBrowser for help on using the repository browser.