egroupware_official/admin/setup/setup.inc.php

37 lines
1.6 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';
2001-06-17 18:57:32 +02:00
$setup_info['admin']['version'] = '0.9.13.002';
$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 */
2002-01-02 18:01:55 +01:00
$setup_info['admin']['hooks'][] = 'acl_manager';
$setup_info['admin']['hooks'][] = 'add_def_pref';
$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';
/* Dependacies for this app to work */
$setup_info['admin']['depends'][] = array(
'appname' => 'phpgwapi',
2002-01-13 21:17:42 +01:00
'versions' => Array('0.9.13', '0.9.14', '0.9.15')
);
2001-05-20 01:58:48 +02:00
?>