egroupware_official/resources/setup/setup.inc.php

50 lines
2.1 KiB
PHP
Raw Normal View History

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
* @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';
$setup_info['resources']['title'] = 'Resources';
$setup_info['resources']['version'] = '1.2';
$setup_info['resources']['app_order'] = 5;
$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';
$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-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',
2006-03-08 22:41:25 +01:00
'versions' => Array('1.0.1','1.2','1.3')
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',
2006-03-08 22:41:25 +01:00
'versions' => Array('1.0.1','1.2','1.3')
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',
'versions' => Array('1.0.0','1.0.1','1.2')
2005-02-25 12:41:24 +01:00
);