2001-05-27 23:32:12 +02:00
|
|
|
<?php
|
2001-05-31 23:50:16 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - PHP Webhosting *
|
|
|
|
* 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$ */
|
|
|
|
|
2001-05-27 23:32:12 +02:00
|
|
|
$setup_info['phpwebhosting']['name'] = 'phpwebhosting';
|
|
|
|
$setup_info['phpwebhosting']['title'] = 'PHPWebHosting';
|
2001-07-13 07:15:44 +02:00
|
|
|
$setup_info['phpwebhosting']['version'] = '0.9.13.005';
|
2001-05-27 23:32:12 +02:00
|
|
|
$setup_info['phpwebhosting']['app_order'] = 10;
|
2001-06-03 23:06:55 +02:00
|
|
|
$setup_info['phpwebhosting']['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-01-07 11:50:42 +01:00
|
|
|
$setup_info['phpwebhosting']['hooks'][] = 'add_def_pref';
|
|
|
|
$setup_info['phpwebhosting']['hooks'][] = 'admin';
|
|
|
|
$setup_info['phpwebhosting']['hooks'][] = 'deleteaccount';
|
|
|
|
$setup_info['phpwebhosting']['hooks'][] = 'preferences';
|
2001-06-24 11:18:38 +02:00
|
|
|
|
2001-05-29 16:15:53 +02:00
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info['phpwebhosting']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2002-01-13 21:37:05 +01:00
|
|
|
'versions' => array('0.9.13', '0.9.14','0.9.15')
|
2001-05-29 16:15:53 +02:00
|
|
|
);
|
2001-05-27 23:32:12 +02:00
|
|
|
?>
|