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

Revision 2189, 1.4 KB checked in by amuller, 14 years ago (diff)

Ticket #597 - atualizando as tabelas que são obrigatorias do fm

  • Property svn:executable set to *
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.0.000';
17        $setup_info['filemanager']['app_order'] = 6;
18        $setup_info['filemanager']['enable']  = 1;
19
20
21        /* The hooks this app includes, needed for hooks registration */
22        $setup_info['filemanager']['hooks'] = array
23        (
24                'add_def_pref',
25                'admin',
26                'deleteaccount',
27                'settings',
28                'sidebox_menu',
29                'personalizer',
30                'preferences',
31        );
32
33        /* Dependencies for this app to work */
34        $setup_info['filemanager']['depends'][] = array
35        (
36                 'appname' => 'phpgwapi',
37                 'versions' => array('2.2.000')
38        );
39?>
Note: See TracBrowser for help on using the repository browser.