egroupware/preferences/setup/setup.inc.php

48 lines
2.1 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';
2010-09-05 17:24:34 +02:00
$setup_info['preferences']['version'] = '1.8';
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';
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']['preferences'] = 'preferences_hooks::preferences';
$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';
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',
2010-09-05 17:24:34 +02:00
'versions' => Array('1.7','1.8','1.9')
2008-10-10 13:51:29 +02:00
);
/**
* Password change without preferences rights
*/
$setup_info['password']['name'] = 'password';
$setup_info['password']['title'] = 'Password';
$setup_info['password']['version'] = $setup_info['preferences']['version'];
$setup_info['password']['app_order'] = 1;
$setup_info['password']['tables'] = array();
$setup_info['password']['enable'] = 2;
$setup_info['password']['index'] = '/preferences/password.php';
$setup_info['password']['license'] = $setup_info['preferences']['license'];
$setup_info['password']['depends'] = $setup_info['preferences']['depends'];