2001-05-19 08:09:07 +02:00
|
|
|
<?php
|
2001-06-03 22:56:46 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Calendar *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2001-05-25 05:28:42 +02:00
|
|
|
$setup_info['calendar']['name'] = 'calendar';
|
2001-11-05 03:08:31 +01:00
|
|
|
$setup_info['calendar']['version'] = '0.9.13.007';
|
2001-05-19 08:09:07 +02:00
|
|
|
$setup_info['calendar']['app_order'] = 3;
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['calendar']['enable'] = 1;
|
2001-05-25 05:28:42 +02:00
|
|
|
|
2002-10-28 00:56:10 +01:00
|
|
|
$setup_info['calendar']['author'] = array
|
|
|
|
(
|
|
|
|
'name' => 'Mark Peters',
|
|
|
|
'email' => 'skeeter@phpgroupware.org'
|
|
|
|
);
|
|
|
|
|
2002-04-27 17:35:26 +02:00
|
|
|
$setup_info['calendar']['license'] = 'GPL';
|
2003-03-30 03:41:37 +02:00
|
|
|
|
2002-10-28 00:56:10 +01:00
|
|
|
$setup_info['calendar']['description'] = 'Powerful calendar with meeting request system and ACL security.';
|
|
|
|
|
2003-03-30 03:41:37 +02:00
|
|
|
$setup_info['calendar']['maintainer'] = array(
|
|
|
|
'name' => 'Ralf Becker',
|
|
|
|
'email' => 'ralfbecker@outdoor-training.de'
|
2002-10-28 00:56:10 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$setup_info['calendar']['based_on'] = array
|
|
|
|
(
|
|
|
|
'info' => 'Webcalendar by Craig Knudsen',
|
|
|
|
'email' => 'cknudsen@radix.net',
|
|
|
|
'url' => 'http://www.radix.net/~cknudsen'
|
|
|
|
);
|
2002-04-25 14:41:19 +02:00
|
|
|
|
2001-05-25 05:28:42 +02:00
|
|
|
$setup_info['calendar']['tables'][] = 'phpgw_cal';
|
|
|
|
$setup_info['calendar']['tables'][] = 'phpgw_cal_holidays';
|
|
|
|
$setup_info['calendar']['tables'][] = 'phpgw_cal_repeats';
|
|
|
|
$setup_info['calendar']['tables'][] = 'phpgw_cal_user';
|
2001-09-04 05:17:49 +02:00
|
|
|
$setup_info['calendar']['tables'][] = 'phpgw_cal_alarm';
|
2002-01-02 18:01:55 +01:00
|
|
|
|
2001-05-29 16:13:03 +02:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
2002-01-28 01:22:04 +01:00
|
|
|
$setup_info['calendar']['hooks'] = array
|
|
|
|
(
|
|
|
|
'add_def_prefs',
|
|
|
|
'admin',
|
|
|
|
'deleteaccount',
|
|
|
|
'email',
|
|
|
|
'home',
|
|
|
|
'home_day',
|
|
|
|
'home_month',
|
|
|
|
'home_week',
|
|
|
|
'home_year',
|
|
|
|
'manual',
|
|
|
|
'preferences',
|
2003-03-30 03:41:37 +02:00
|
|
|
'settings'
|
2002-01-28 01:22:04 +01:00
|
|
|
);
|
2001-05-29 16:13:03 +02:00
|
|
|
|
|
|
|
/* Dependencies for this app to work */
|
|
|
|
$setup_info['calendar']['depends'][] = array(
|
|
|
|
'appname' => 'phpgwapi',
|
2002-01-13 21:17:42 +01:00
|
|
|
'versions' => Array('0.9.13', '0.9.14','0.9.15')
|
2001-05-29 16:13:03 +02:00
|
|
|
);
|
2001-05-24 10:18:41 +02:00
|
|
|
?>
|