egroupware_official/admin/setup/setup.inc.php

31 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2001-06-03 22:56:46 +02:00
/**************************************************************************\
* phpGroupWare - Chora *
* 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-20 01:58:48 +02:00
$setup_info['admin']['name'] = 'admin';
$setup_info['admin']['title'] = 'Administration';
$setup_info['admin']['version'] = '0.9.13.001';
$setup_info['admin']['app_order'] = 1;
2001-05-20 01:58:48 +02:00
$setup_info['admin']['tables'] = '';
2001-06-03 22:56:46 +02:00
$setup_info['admin']['enable'] = 1;
/* The hooks this app includes, needed for hooks registration */
$setup_info['admin']['hooks'][] = 'preferences';
$setup_info['admin']['hooks'][] = 'admin';
/* Dependacies for this app to work */
$setup_info['admin']['depends'][] = array(
'appname' => 'phpgwapi',
2001-05-30 19:48:20 +02:00
'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13')
);
2001-05-20 01:58:48 +02:00
?>