2005-02-03 17:42:20 +01:00
|
|
|
<?php
|
2005-02-12 09:25:26 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* eGroupWare - resources *
|
|
|
|
* http://www.egroupware.org *
|
|
|
|
* *
|
|
|
|
* Written by Cornelius Weiss [egw@von-und-zu-weiss.de] *
|
|
|
|
* ----------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2005-02-23 12:50:12 +01:00
|
|
|
/* $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';
|
2005-06-29 11:30:08 +02:00
|
|
|
$setup_info['resources']['version'] = '0.0.1.020';
|
2005-02-12 09:25:26 +01:00
|
|
|
$setup_info['resources']['app_order'] = 1;
|
|
|
|
$setup_info['resources']['tables'] = array('egw_resources');
|
|
|
|
$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-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',
|
2005-02-12 09:25:26 +01:00
|
|
|
'versions' => Array('1.0.1')
|
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',
|
2005-07-19 11:02:39 +02:00
|
|
|
'versions' => Array('1.0.0','1.0.1')
|
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',
|
2005-07-19 11:02:39 +02:00
|
|
|
'versions' => Array('1.0.0','1.0.1')
|
2005-02-25 12:41:24 +01:00
|
|
|
);
|
|
|
|
|
2005-02-24 14:10:57 +01:00
|
|
|
|
2005-02-03 17:42:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-02-12 09:25:26 +01:00
|
|
|
|
2005-02-12 16:49:38 +01:00
|
|
|
|
2005-02-16 13:19:20 +01:00
|
|
|
|
|
|
|
|
2005-02-25 09:55:37 +01:00
|
|
|
|
2005-06-29 11:30:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
|