mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
31 lines
1.3 KiB
PHP
Executable File
31 lines
1.3 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* 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$ */
|
|
|
|
$setup_info['admin']['name'] = 'admin';
|
|
$setup_info['admin']['title'] = 'Administration';
|
|
$setup_info['admin']['version'] = '0.9.13.002';
|
|
$setup_info['admin']['app_order'] = 1;
|
|
$setup_info['admin']['tables'] = '';
|
|
$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',
|
|
'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13')
|
|
);
|
|
?>
|