2001-05-31 00:00:51 +02:00
|
|
|
<?php
|
2001-05-31 23:44:52 +02:00
|
|
|
/**************************************************************************\
|
2001-05-31 23:50:51 +02:00
|
|
|
* phpGroupWare - infolog *
|
2001-05-31 23:44:52 +02:00
|
|
|
* 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-06-03 22:56:46 +02:00
|
|
|
$setup_info['infolog']['name'] = 'infolog';
|
|
|
|
$setup_info['infolog']['title'] = 'Info Log';
|
2002-09-01 22:41:36 +02:00
|
|
|
$setup_info['infolog']['version'] = '0.9.15.003';
|
2001-05-31 23:44:52 +02:00
|
|
|
$setup_info['infolog']['app_order'] = 20;
|
2002-09-01 22:41:36 +02:00
|
|
|
$setup_info['infolog']['tables'] = array('phpgw_infolog','phpgw_links');
|
2001-06-03 22:56:46 +02:00
|
|
|
$setup_info['infolog']['enable'] = 1;
|
2001-05-31 23:44:52 +02:00
|
|
|
|
2002-05-01 17:41:48 +02:00
|
|
|
$setup_info['infolog']['author'] = 'Ralf Becker';
|
|
|
|
$setup_info['infolog']['license'] = 'GPL';
|
|
|
|
$setup_info['infolog']['description'] =
|
2002-05-01 17:53:11 +02:00
|
|
|
'CRM type app using Addressbook providing Todo List, Notes and Phonelog.';
|
2002-05-01 17:41:48 +02:00
|
|
|
$setup_info['infolog']['maintainer'] = 'Ralf Becker';
|
|
|
|
$setup_info['infolog']['maintainer_email'] = 'ralfbecker@outdoor-training.de';
|
|
|
|
|
2001-05-31 23:44:52 +02:00
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
|
|
$setup_info['infolog']['hooks'][] = 'preferences';
|
|
|
|
$setup_info['infolog']['hooks'][] = 'admin';
|
2001-07-14 11:46:17 +02:00
|
|
|
$setup_info['infolog']['hooks'][] = 'about';
|
2002-05-14 14:04:15 +02:00
|
|
|
$setup_info['infolog']['hooks'][] = 'home';
|
2001-07-14 02:55:54 +02:00
|
|
|
$setup_info['infolog']['hooks'][] = 'addressbook_view';
|
|
|
|
$setup_info['infolog']['hooks'][] = 'projects_view';
|
2002-05-12 09:14:01 +02:00
|
|
|
$setup_info['infolog']['hooks'][] = 'calendar_view';
|
2001-05-31 23:44:52 +02:00
|
|
|
|
2002-04-28 17:54:11 +02:00
|
|
|
/* Dependencies for this app to work */
|
2001-05-31 23:44:52 +02:00
|
|
|
$setup_info['infolog']['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-31 23:44:52 +02:00
|
|
|
);
|
2001-05-31 00:00:51 +02:00
|
|
|
?>
|