2005-02-03 17:42:20 +01:00
|
|
|
<?php
|
2005-11-11 00:35:55 +01:00
|
|
|
/**
|
|
|
|
* eGroupWare - resources
|
|
|
|
* http://www.egroupware.org
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package resources
|
2006-04-21 19:13:50 +02:00
|
|
|
* @subpackage setup
|
2005-11-11 00:35:55 +01:00
|
|
|
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
|
|
|
|
* @author Lukas Weiss <wnz_gh05t@users.sourceforge.net>
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2005-02-17 12:23:00 +01:00
|
|
|
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['name'] = 'resources';
|
2005-09-27 11:43:57 +02:00
|
|
|
$setup_info['resources']['title'] = 'Resources';
|
2007-04-30 11:10:36 +02:00
|
|
|
$setup_info['resources']['version'] = '1.4';
|
2005-11-14 17:42:21 +01:00
|
|
|
$setup_info['resources']['app_order'] = 5;
|
2005-11-14 19:16:56 +01:00
|
|
|
$setup_info['resources']['tables'] = array('egw_resources','egw_resources_extra');
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['enable'] = 1;
|
2005-02-03 17:42:20 +01:00
|
|
|
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['author'] = 'Cornelius Weiss';
|
|
|
|
$setup_info['resources']['license'] = 'GPL';
|
2005-09-27 11:43:57 +02:00
|
|
|
$setup_info['resources']['description'] = 'A resource management and booking system, which integrates into eGroupWare\'s calendar.';
|
|
|
|
$setup_info['resources']['note'] = '';
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['maintainer'] = array(
|
|
|
|
'name' => 'Cornelius Weiss',
|
|
|
|
'email' => 'egw@von-und-zu-weiss.de'
|
2005-11-09 21:59:44 +01:00
|
|
|
);
|
2005-02-12 09:25:26 +01:00
|
|
|
|
2005-02-25 12:35:51 +01:00
|
|
|
$setup_info['resources']['hooks']['preferences'] = 'resources.resources_hooks.admin_prefs_sidebox';
|
|
|
|
$setup_info['resources']['hooks']['admin'] = 'resources.resources_hooks.admin_prefs_sidebox';
|
|
|
|
$setup_info['resources']['hooks']['sidebox_menu'] = 'resources.resources_hooks.admin_prefs_sidebox';
|
|
|
|
$setup_info['resources']['hooks']['search_link'] = 'resources.resources_hooks.search_link';
|
2005-06-12 09:15:13 +02:00
|
|
|
$setup_info['resources']['hooks']['calendar_resources'] = 'resources.resources_hooks.calendar_resources';
|
2005-02-12 09:25:26 +01:00
|
|
|
// $setup_info['resources']['hooks'][] = 'home';
|
|
|
|
// $setup_info['resources']['hooks'][] = 'settings';
|
2005-02-03 17:42:20 +01:00
|
|
|
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['depends'][] = array(
|
2005-02-03 17:42:20 +01:00
|
|
|
'appname' => 'phpgwapi',
|
2007-04-30 11:10:36 +02:00
|
|
|
'versions' => Array('1.3','1.4','1.5')
|
2005-02-03 17:42:20 +01:00
|
|
|
);
|
2005-02-25 12:41:24 +01:00
|
|
|
$setup_info['resources']['depends'][] = array( // cause eTemplates is not in the api yet
|
2005-02-03 17:42:20 +01:00
|
|
|
'appname' => 'etemplate',
|
2007-04-30 11:10:36 +02:00
|
|
|
'versions' => Array('1.3','1.4','1.5')
|
2005-02-03 17:42:20 +01:00
|
|
|
);
|
2005-02-25 12:41:24 +01:00
|
|
|
$setup_info['resources']['depends'][] = array( // cause of vfs psuedoprotocol is not fully in the api yet
|
|
|
|
'appname' => 'filemanager',
|
2007-04-30 11:10:36 +02:00
|
|
|
'versions' => Array('1.3','1.4','1.5')
|
2005-02-25 12:41:24 +01:00
|
|
|
);
|