egroupware/resources/setup/setup.old.inc.php

60 lines
2.4 KiB
PHP
Raw Normal View History

2005-02-12 16:50:56 +01:00
<?php
/**************************************************************************\
* 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-24 14:10:57 +01:00
/* $Id$*/
2005-02-12 16:50:56 +01:00
$setup_info['resources']['name'] = 'resources';
$setup_info['resources']['title'] = 'resources';
2005-02-25 09:55:37 +01:00
$setup_info['resources']['version'] = '0.0.1.016';
2005-02-12 16:50:56 +01:00
$setup_info['resources']['app_order'] = 1;
$setup_info['resources']['tables'] = array('egw_resources');
$setup_info['resources']['enable'] = 1;
$setup_info['resources']['author'] = 'Cornelius Weiss';
$setup_info['resources']['license'] = 'GPL';
$setup_info['resources']['description'] = 'Resource management system';
$setup_info['resources']['note'] = 'This includes resource booking';
$setup_info['resources']['maintainer'] = array(
'name' => 'Cornelius Weiss',
'email' => 'egw@von-und-zu-weiss.de'
);
2005-02-24 14:10:57 +01:00
$setup_info['resources']['hooks']['preferences'] = 'resources.admin_prefs_sidebox_hooks.all_hooks';
$setup_info['resources']['hooks']['admin'] = 'resources.admin_prefs_sidebox_hooks.all_hooks';
$setup_info['resources']['hooks']['sidebox_menu'] = 'resources.admin_prefs_sidebox_hooks.all_hooks';
2005-02-25 09:55:37 +01:00
$setup_info['resources']['hooks']['search_link'] = 'resources.admin_prefs_sidebox_hooks.search_link';
2005-02-12 16:50:56 +01:00
// $setup_info['resources']['hooks'][] = 'home';
// $setup_info['resources']['hooks'][] = 'settings';
$setup_info['resources']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => Array('1.0.1')
);
$setup_info['resources']['depends'][] = array(
'appname' => 'etemplate',
'versions' => Array('1.0.0')
);
2005-02-25 09:55:37 +01:00
$setup_info['resources']['depends'][] = array( // cause of the link class
'appname' => 'infolog',
'versions' => Array('1.0.0')
);
2005-02-12 16:50:56 +01:00
2005-02-16 13:19:20 +01:00
2005-02-24 14:10:57 +01:00