2001-05-19 08:09:07 +02:00
|
|
|
<?php
|
2007-11-22 01:57:12 +01:00
|
|
|
/**
|
2010-09-05 17:24:34 +02:00
|
|
|
* EGroupware - Admin
|
2007-11-22 01:57:12 +01:00
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package admin
|
|
|
|
* @subpackage setup
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2001-06-03 22:56:46 +02:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['name'] = 'admin';
|
2015-07-11 15:56:50 +02:00
|
|
|
$setup_info['admin']['version'] = '14.3';
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['app_order'] = 1;
|
2007-11-23 21:04:26 +01:00
|
|
|
$setup_info['admin']['tables'] = array('egw_admin_queue','egw_admin_remote');
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['enable'] = 1;
|
2013-10-24 12:56:40 +02:00
|
|
|
$setup_info['admin']['index'] = 'admin.admin_ui.index&ajax=true';
|
2001-06-03 22:56:46 +02:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['author'][] = array(
|
|
|
|
'name' => 'eGroupWare coreteam',
|
|
|
|
'email' => 'egroupware-developers@lists.sourceforge.net'
|
|
|
|
);
|
2001-05-29 16:13:03 +02:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['maintainer'][] = array(
|
|
|
|
'name' => 'eGroupWare coreteam',
|
|
|
|
'email' => 'egroupware-developers@lists.sourceforge.net',
|
|
|
|
'url' => 'www.egroupware.org'
|
|
|
|
);
|
2002-10-28 01:26:57 +01:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
2010-09-05 17:24:34 +02:00
|
|
|
$setup_info['admin']['description'] = 'EGroupware administration application';
|
2002-10-28 01:26:57 +01:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
|
|
$setup_info['admin']['hooks'] = array(
|
|
|
|
'acl_manager',
|
2011-08-31 12:16:12 +02:00
|
|
|
'config_validate',
|
2007-11-22 01:57:12 +01:00
|
|
|
);
|
2014-03-28 19:54:40 +01:00
|
|
|
$setup_info['admin']['hooks']['admin'] = 'admin_hooks::all_hooks';
|
|
|
|
$setup_info['admin']['hooks']['sidebox_menu'] = 'admin_hooks::all_hooks';
|
|
|
|
$setup_info['admin']['hooks']['edit_user'] = 'admin_hooks::edit_user';
|
2016-04-21 18:39:59 +02:00
|
|
|
$setup_info['admin']['hooks']['config'] = 'admin_hooks::config';
|
2014-03-17 16:28:20 +01:00
|
|
|
|
|
|
|
// add account tab to addressbook.edit
|
|
|
|
$setup_info['admin']['hooks']['addressbook_edit'] = 'admin.admin_account.addressbook_edit';
|
2002-04-25 03:19:52 +02:00
|
|
|
|
2007-11-22 01:57:12 +01:00
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info['admin']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2014-06-24 12:00:50 +02:00
|
|
|
'versions' => Array('14.1')
|
2007-11-22 01:57:12 +01:00
|
|
|
);
|
|
|
|
$setup_info['admin']['depends'][] = array(
|
|
|
|
'appname' => 'etemplate',
|
2014-06-24 12:00:50 +02:00
|
|
|
'versions' => Array('14.1')
|
2007-11-22 01:57:12 +01:00
|
|
|
);
|
2015-07-11 15:56:50 +02:00
|
|
|
|
|
|
|
|