egroupware/filemanager/setup/setup.inc.php

45 lines
1.9 KiB
PHP
Raw Normal View History

2001-05-27 23:32:12 +02:00
<?php
2001-05-31 23:50:16 +02:00
/**************************************************************************\
2004-01-27 19:19:23 +01:00
* eGroupWare - Filemanager *
2004-01-26 02:29:06 +01:00
* http://www.egroupware.org *
2001-05-31 23:50:16 +02:00
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$setup_info['filemanager']['name'] = 'filemanager';
$setup_info['filemanager']['title'] = 'Filemanager';
$setup_info['filemanager']['version'] = '1.5';
2004-03-28 14:20:15 +02:00
$setup_info['filemanager']['app_order'] = 6;
$setup_info['filemanager']['enable'] = 1;
$setup_info['filemanager']['tables'] =array('egw_vfs');
2001-05-27 23:32:12 +02:00
2001-05-29 16:15:53 +02:00
/* The hooks this app includes, needed for hooks registration */
$setup_info['filemanager']['hooks']['preferences'] = 'filemanager.admin_prefs_sidebox_hooks.all_hooks';
$setup_info['filemanager']['hooks']['deleteaccount'] = 'filemanager.admin_prefs_sidebox_hooks.all_hooks';
$setup_info['filemanager']['hooks'][] = 'settings';
$setup_info['filemanager']['hooks']['sidebox_menu'] = 'filemanager.admin_prefs_sidebox_hooks.all_hooks';
2001-06-24 11:18:38 +02:00
2001-05-29 16:15:53 +02:00
/* Dependencies for this app to work */
$setup_info['filemanager']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => array('1.3','1.4','1.5')
);
// installation checks for filemanager
$setup_info['filemanager']['check_install'] = array(
'' => array(
'func' => 'pear_check',
'from' => 'Filemanager',
),
'HTTP_WebDAV_Server' => array(
'func' => 'pear_check',
'from' => 'Filemanager',
),
2001-05-29 16:15:53 +02:00
);