2001-05-27 23:32:12 +02:00
|
|
|
<?php
|
2001-05-31 23:50:16 +02:00
|
|
|
/**************************************************************************\
|
2002-09-21 07:26:43 +02:00
|
|
|
* phpGroupWare - Filemanager *
|
2001-05-31 23:50:16 +02:00
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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-03-04 02:16:30 +01:00
|
|
|
$setup_info['filemanager']['version'] = '0.9.15.001';
|
2002-09-21 07:26:43 +02:00
|
|
|
$setup_info['filemanager']['app_order'] = 10;
|
|
|
|
$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 */
|
2002-09-21 07:26:43 +02:00
|
|
|
$setup_info['filemanager']['hooks'][] = 'add_def_pref';
|
|
|
|
$setup_info['filemanager']['hooks'][] = 'admin';
|
|
|
|
$setup_info['filemanager']['hooks'][] = 'deleteaccount';
|
|
|
|
$setup_info['filemanager']['hooks'][] = 'preferences';
|
2003-03-04 02:16:30 +01:00
|
|
|
$setup_info['filemanager']['hooks'][] = 'settings';
|
2001-06-24 11:18:38 +02:00
|
|
|
|
2001-05-29 16:15:53 +02:00
|
|
|
/* Dependencies for this app to work */
|
2002-09-21 07:26:43 +02:00
|
|
|
$setup_info['filemanager']['depends'][] = array(
|
2001-05-29 16:15:53 +02:00
|
|
|
'appname' => 'phpgwapi',
|
2003-03-04 02:16:30 +01:00
|
|
|
'versions' => array('0.9.15')
|
2001-05-29 16:15:53 +02:00
|
|
|
);
|
2001-05-27 23:32:12 +02:00
|
|
|
?>
|