forked from extern/egroupware
a93474ef2b
changing columns with no user-input to CHARACTER SET ascii (instead of utf8), shorten indexes and add additional autoincrement columns where primary key contained varchars
58 lines
1.7 KiB
PHP
Executable File
58 lines
1.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* EGroupware - Admin
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package admin
|
|
* @subpackage setup
|
|
* @version $Id$
|
|
*/
|
|
|
|
$setup_info['admin']['name'] = 'admin';
|
|
$setup_info['admin']['version'] = '14.3';
|
|
$setup_info['admin']['app_order'] = 1;
|
|
$setup_info['admin']['tables'] = array('egw_admin_queue','egw_admin_remote');
|
|
$setup_info['admin']['enable'] = 1;
|
|
$setup_info['admin']['index'] = 'admin.admin_ui.index&ajax=true';
|
|
|
|
$setup_info['admin']['author'][] = array(
|
|
'name' => 'eGroupWare coreteam',
|
|
'email' => 'egroupware-developers@lists.sourceforge.net'
|
|
);
|
|
|
|
$setup_info['admin']['maintainer'][] = array(
|
|
'name' => 'eGroupWare coreteam',
|
|
'email' => 'egroupware-developers@lists.sourceforge.net',
|
|
'url' => 'www.egroupware.org'
|
|
);
|
|
|
|
$setup_info['admin']['license'] = 'GPL';
|
|
$setup_info['admin']['description'] = 'EGroupware administration application';
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
$setup_info['admin']['hooks'] = array(
|
|
'acl_manager',
|
|
'config_validate',
|
|
'deleteaccount',
|
|
'topmenu_info'
|
|
);
|
|
$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';
|
|
|
|
// add account tab to addressbook.edit
|
|
$setup_info['admin']['hooks']['addressbook_edit'] = 'admin.admin_account.addressbook_edit';
|
|
|
|
/* Dependencies for this app to work */
|
|
$setup_info['admin']['depends'][] = array(
|
|
'appname' => 'phpgwapi',
|
|
'versions' => Array('14.1')
|
|
);
|
|
$setup_info['admin']['depends'][] = array(
|
|
'appname' => 'etemplate',
|
|
'versions' => Array('14.1')
|
|
);
|
|
|
|
|