egroupware_official/preferences/setup/setup.inc.php

43 lines
1.9 KiB
PHP
Raw Normal View History

<?php
2008-10-10 13:51:29 +02:00
/**
2010-09-05 17:24:34 +02:00
* EGroupware - Preferences
2008-10-10 13:51:29 +02:00
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package preferences
* @subpackage setup
* @version $Id$
*/
2008-10-10 13:51:29 +02:00
$setup_info['preferences']['name'] = 'preferences';
$setup_info['preferences']['title'] = 'Preferences';
2014-06-24 12:00:50 +02:00
$setup_info['preferences']['version'] = '14.1';
2008-10-10 13:51:29 +02:00
$setup_info['preferences']['app_order'] = 1;
$setup_info['preferences']['tables'] = '';
$setup_info['preferences']['enable'] = 2;
2010-06-09 08:38:00 +02:00
$setup_info['preferences']['license'] = 'GPL';
$setup_info['preferences']['index'] = 'preferences.preferences_settings.index&ajax=true';
2001-06-03 22:56:46 +02:00
2008-10-10 13:51:29 +02:00
/* The hooks this app includes, needed for hooks registration */
$setup_info['preferences']['hooks']['deleteaccount'] = 'preferences_hooks::deleteaccount';
$setup_info['preferences']['hooks']['deletegroup'] = 'preferences_hooks::deleteaccount';
$setup_info['preferences']['hooks']['settings'] = 'preferences_hooks::settings';
$setup_info['preferences']['hooks']['edit_user'] = 'preferences_hooks::edit_user';
$setup_info['preferences']['hooks']['view_user'] = 'preferences_hooks::edit_user';
$setup_info['preferences']['hooks']['edit_group'] = 'preferences_hooks::edit_user';
$setup_info['preferences']['hooks']['group_manager'] = 'preferences_hooks::edit_user';
$setup_info['preferences']['hooks']['admin'] = 'preferences_hooks::admin';
$setup_info['preferences']['hooks']['deny_prefs'] = 'preferences_hooks::deny_prefs';
$setup_info['preferences']['hooks']['deny_acl'] = 'preferences_hooks::deny_acl';
$setup_info['preferences']['hooks']['deny_cats'] = 'preferences_hooks::deny_cats';
2001-05-29 16:15:53 +02:00
2008-10-10 13:51:29 +02:00
/* Dependencies for this app to work */
$setup_info['preferences']['depends'][] = array(
'appname' => 'phpgwapi',
2014-06-24 12:00:50 +02:00
'versions' => Array('14.1')
);
$setup_info['preferences']['depends'][] = array(
'appname' => 'etemplate',
'versions' => Array('14.1')
2008-10-10 13:51:29 +02:00
);