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$ */
|
|
|
|
|
2002-09-21 07:26:43 +02:00
|
|
|
$setup_info['filemanager']['name'] = 'filemanager';
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['filemanager']['title'] = 'Filemanager';
|
|
|
|
$setup_info['filemanager']['version'] = '0.9.13.005';
|
2004-03-28 14:20:15 +02:00
|
|
|
$setup_info['filemanager']['app_order'] = 6;
|
2002-09-21 07:26:43 +02:00
|
|
|
$setup_info['filemanager']['enable'] = 1;
|
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 */
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['filemanager']['hooks'] = array
|
|
|
|
(
|
|
|
|
'add_def_pref',
|
|
|
|
'admin',
|
|
|
|
'deleteaccount',
|
2003-11-22 04:05:00 +01:00
|
|
|
'settings',
|
2003-12-09 00:18:34 +01:00
|
|
|
'sidebox_menu',
|
2004-03-09 15:55:05 +01:00
|
|
|
'personalizer',
|
2004-03-04 19:04:44 +01:00
|
|
|
'preferences',
|
|
|
|
'manual'
|
2003-08-28 16:31:11 +02:00
|
|
|
);
|
2001-06-24 11:18:38 +02:00
|
|
|
|
2001-05-29 16:15:53 +02:00
|
|
|
/* Dependencies for this app to work */
|
2003-08-28 16:31:11 +02:00
|
|
|
$setup_info['filemanager']['depends'][] = array
|
|
|
|
(
|
2001-05-29 16:15:53 +02:00
|
|
|
'appname' => 'phpgwapi',
|
2004-03-28 14:20:15 +02:00
|
|
|
'versions' => array('0.9.14','0.9.16','1.0.0')
|
2001-05-29 16:15:53 +02:00
|
|
|
);
|
2001-05-27 23:32:12 +02:00
|
|
|
?>
|