mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
68 lines
3.6 KiB
PHP
68 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - InfoLog - Setup
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @package infolog
|
|
* @subpackage setup
|
|
* @copyright (c) 2003-19 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
*/
|
|
|
|
$setup_info['infolog']['name'] = 'infolog';
|
|
$setup_info['infolog']['version'] = '21.1';
|
|
$setup_info['infolog']['app_order'] = 5;
|
|
$setup_info['infolog']['tables'] = array('egw_infolog','egw_infolog_extra','egw_infolog_users');
|
|
$setup_info['infolog']['enable'] = 1;
|
|
$setup_info['infolog']['index'] = 'infolog.infolog_ui.index&ajax=true';
|
|
|
|
$setup_info['infolog']['author'] =
|
|
$setup_info['infolog']['maintainer'] = array(
|
|
'name' => 'Ralf Becker',
|
|
'email' => 'ralfbecker@outdoor-training.de'
|
|
);
|
|
$setup_info['infolog']['license'] = 'GPL';
|
|
$setup_info['infolog']['description'] =
|
|
'<p><b>CRM</b> (customer-relation-management) type app using Addressbook providing
|
|
Todo List, Notes and Phonelog. <b>InfoLog</b> is orininaly based on EGroupware\'s
|
|
old ToDo-List and has the features of all 3 mentioned applications plus fully working ACL
|
|
(including Add+Private attributes, add for to addreplys/subtasks).</p>
|
|
<p>Responsibility for a task (ToDo) or a phonecall can be <b>delegated</b> to an other
|
|
user. All entries can be linked to addressbook entries, projects and/or calendar events.
|
|
This allows you to <b>log all activity of a contact</b>/address or project.
|
|
The entries may be viewed or added from InfoLog direct or from within
|
|
the contact/address, project or calendar view.</p>
|
|
<p>Other documents / files can be linked to InfoLog entries and are store in the VFS
|
|
(EGroupware\'s virtual file system).</p>';
|
|
$setup_info['infolog']['note'] = '';
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
$setup_info['infolog']['hooks']['settings'] = 'infolog_hooks::settings';
|
|
$setup_info['infolog']['hooks']['verify_settings'] = 'infolog_hooks::verify_settings';
|
|
$setup_info['infolog']['hooks']['admin'] = 'infolog_hooks::all_hooks';
|
|
$setup_info['infolog']['hooks']['not_enum_group_acls'] = 'infolog_hooks::not_enum_group_acls';
|
|
$setup_info['infolog']['hooks']['acl_rights'] = 'infolog_hooks::acl_rights';
|
|
$setup_info['infolog']['hooks']['categories'] = 'infolog_hooks::categories';
|
|
$setup_info['infolog']['hooks']['deleteaccount'] = 'infolog.infolog_so.change_delete_owner';
|
|
$setup_info['infolog']['hooks']['addressbook_view'] = 'infolog.infolog_ui.hook_view';
|
|
$setup_info['infolog']['hooks']['projects_view'] = 'infolog.infolog_ui.hook_view';
|
|
$setup_info['infolog']['hooks']['calendar_view'] = 'infolog.infolog_ui.hook_view';
|
|
$setup_info['infolog']['hooks']['infolog'] = 'infolog.infolog_ui.hook_view';
|
|
$setup_info['infolog']['hooks']['calendar_include_events'] = 'infolog.infolog_bo.cal_to_include';
|
|
$setup_info['infolog']['hooks']['calendar_include_todos'] = 'infolog.infolog_ui.cal_to_include';
|
|
$setup_info['infolog']['hooks']['sidebox_menu'] = 'infolog_hooks::all_hooks';
|
|
$setup_info['infolog']['hooks']['search_link'] = 'infolog_hooks::search_link';
|
|
$setup_info['infolog']['hooks']['pm_custom_app_icons'] = 'infolog.infolog_bo.pm_icons';
|
|
$setup_info['infolog']['hooks']['timesheet_set'] = 'infolog.infolog_ui.timesheet_set';
|
|
$setup_info['infolog']['hooks']['calendar_set'] = 'infolog.infolog_ui.calendar_set';
|
|
$setup_info['infolog']['hooks']['mail_import'] = 'infolog_hooks::mail_import';
|
|
$setup_info['infolog']['hooks']['change_account_ids'] = 'infolog_customfields::change_account_ids';
|
|
|
|
// Dependencies for this app to work
|
|
$setup_info['infolog']['depends'][] = array(
|
|
'appname' => 'api',
|
|
'versions' => Array('21.1')
|
|
);
|
|
|