2001-05-19 08:09:07 +02:00
|
|
|
<?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';
|
2001-06-17 18:57:32 +02:00
|
|
|
$setup_info['admin']['version'] = '0.9.13.002';
|
2001-05-19 08:09:07 +02:00
|
|
|
$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;
|
2001-05-29 16:13:03 +02:00
|
|
|
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2002-01-02 18:01:55 +01:00
|
|
|
$setup_info['admin']['hooks'][] = 'acl_manager';
|
|
|
|
$setup_info['admin']['hooks'][] = 'add_def_pref';
|
2001-05-29 16:13:03 +02:00
|
|
|
$setup_info['admin']['hooks'][] = 'admin';
|
2002-01-02 18:01:55 +01:00
|
|
|
$setup_info['admin']['hooks'][] = 'after_navbar';
|
|
|
|
$setup_info['admin']['hooks'][] = 'config';
|
|
|
|
$setup_info['admin']['hooks'][] = 'deleteaccount';
|
|
|
|
$setup_info['admin']['hooks'][] = 'manual';
|
|
|
|
$setup_info['admin']['hooks'][] = 'view_user';
|
2001-05-29 16:13:03 +02:00
|
|
|
|
|
|
|
/* 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-29 16:13:03 +02:00
|
|
|
);
|
2001-05-20 01:58:48 +02:00
|
|
|
?>
|