"version and dependencies for 1.6"

This commit is contained in:
Ralf Becker 2008-10-10 11:51:29 +00:00
parent db52734dd1
commit 3931b25010

View File

@ -1,33 +1,30 @@
<?php <?php
/**************************************************************************\ /**
* eGroupWare - Preferences * * eGroupWare - Preferences
* http://www.egroupware.org * *
* -------------------------------------------- * * @link http://www.egroupware.org
* This program is free software; you can redistribute it and/or modify it * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* under the terms of the GNU General Public License as published by the * * @package preferences
* Free Software Foundation; either version 2 of the License, or (at your * * @subpackage setup
* option) any later version. * * @version $Id$
\**************************************************************************/ */
/* $Id$ */ $setup_info['preferences']['name'] = 'preferences';
$setup_info['preferences']['title'] = 'Preferences';
$setup_info['preferences']['version'] = '1.6';
$setup_info['preferences']['app_order'] = 1;
$setup_info['preferences']['tables'] = '';
$setup_info['preferences']['enable'] = 2;
$setup_info['preferences']['name'] = 'preferences'; /* The hooks this app includes, needed for hooks registration */
$setup_info['preferences']['title'] = 'Preferences'; $setup_info['preferences']['hooks'][] = 'deleteaccount';
$setup_info['preferences']['version'] = '1.4'; $setup_info['preferences']['hooks'][] = 'config';
$setup_info['preferences']['app_order'] = 1; $setup_info['preferences']['hooks'][] = 'preferences';
$setup_info['preferences']['tables'] = ''; $setup_info['preferences']['hooks'][] = 'settings';
$setup_info['preferences']['enable'] = 2; $setup_info['preferences']['hooks']['edit_user'] = 'preferences.uisettings.edit_user';
/* The hooks this app includes, needed for hooks registration */ /* Dependencies for this app to work */
$setup_info['preferences']['hooks'][] = 'deleteaccount'; $setup_info['preferences']['depends'][] = array(
$setup_info['preferences']['hooks'][] = 'config';
$setup_info['preferences']['hooks'][] = 'preferences';
$setup_info['preferences']['hooks'][] = 'settings';
$setup_info['preferences']['hooks']['edit_user'] = 'preferences.uisettings.edit_user';
/* Dependencies for this app to work */
$setup_info['preferences']['depends'][] = array(
'appname' => 'phpgwapi', 'appname' => 'phpgwapi',
'versions' => Array('1.2','1.3','1.4','1.5') 'versions' => Array('1.2','1.3','1.4','1.5','1.6','1.7')
); );
?>