Updates needed for phpwebhosting -> filemanager name change, some quotes fixes and some other misc. cleanup

This commit is contained in:
Zone
2002-09-21 05:26:43 +00:00
parent 71ec2f0197
commit 241d87cdd1
20 changed files with 373 additions and 422 deletions

View File

@ -1,6 +1,6 @@
<?php
/**************************************************************************\
* phpGroupWare - PHP Webhosting *
* phpGroupWare - Filemanager *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
@ -11,20 +11,20 @@
/* $Id$ */
$setup_info['phpwebhosting']['name'] = 'phpwebhosting';
$setup_info['phpwebhosting']['title'] = 'PHPWebHosting';
$setup_info['phpwebhosting']['version'] = '0.9.13.005';
$setup_info['phpwebhosting']['app_order'] = 10;
$setup_info['phpwebhosting']['enable'] = 1;
$setup_info['filemanager']['name'] = 'filemanager';
$setup_info['filemanager']['title'] = 'Filemanager';
$setup_info['filemanager']['version'] = '0.9.13.005';
$setup_info['filemanager']['app_order'] = 10;
$setup_info['filemanager']['enable'] = 1;
/* The hooks this app includes, needed for hooks registration */
$setup_info['phpwebhosting']['hooks'][] = 'add_def_pref';
$setup_info['phpwebhosting']['hooks'][] = 'admin';
$setup_info['phpwebhosting']['hooks'][] = 'deleteaccount';
$setup_info['phpwebhosting']['hooks'][] = 'preferences';
$setup_info['filemanager']['hooks'][] = 'add_def_pref';
$setup_info['filemanager']['hooks'][] = 'admin';
$setup_info['filemanager']['hooks'][] = 'deleteaccount';
$setup_info['filemanager']['hooks'][] = 'preferences';
/* Dependencies for this app to work */
$setup_info['phpwebhosting']['depends'][] = array(
$setup_info['filemanager']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => array('0.9.13', '0.9.14','0.9.15')
);