egroupware_official/preferences/setup/setup.inc.php

33 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2001-06-03 22:56:46 +02:00
/**************************************************************************\
2004-01-26 02:15:51 +01:00
* eGroupWare - Preferences *
* http://www.egroupware.org *
2001-06-03 22:56:46 +02:00
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
2001-06-03 22:56:46 +02:00
/* $Id$ */
2001-05-20 02:03:17 +02:00
$setup_info['preferences']['name'] = 'preferences';
$setup_info['preferences']['title'] = 'Preferences';
2005-11-13 23:33:49 +01:00
$setup_info['preferences']['version'] = '1.2';
$setup_info['preferences']['app_order'] = 1;
2001-05-20 02:03:17 +02:00
$setup_info['preferences']['tables'] = '';
2001-06-03 22:56:46 +02:00
$setup_info['preferences']['enable'] = 2;
2001-05-29 16:15:53 +02:00
/* The hooks this app includes, needed for hooks registration */
$setup_info['preferences']['hooks'][] = 'deleteaccount';
$setup_info['preferences']['hooks'][] = 'config';
$setup_info['preferences']['hooks'][] = 'preferences';
$setup_info['preferences']['hooks'][] = 'settings';
2001-05-29 16:15:53 +02:00
2004-01-22 03:30:43 +01:00
/* Dependencies for this app to work */
$setup_info['preferences']['depends'][] = array(
2004-01-22 03:30:43 +01:00
'appname' => 'phpgwapi',
2005-11-13 23:33:49 +01:00
'versions' => Array('1.0.0','1.0.1','1.2')
2001-05-29 16:15:53 +02:00
);
2001-05-20 02:03:17 +02:00
?>