install check for filemanagers webdav support (PEAR::HTTP_WebDAV_Server)

This commit is contained in:
Ralf Becker 2006-06-23 00:14:40 +00:00
parent 1b39b7d4fb
commit f414fbb31c

View File

@ -28,6 +28,17 @@
/* Dependencies for this app to work */
$setup_info['filemanager']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => array('1.0.0','1.0.1','1.2','1.3')
'versions' => array('1.3')
);
// 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',
),
);
?>