mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
06db393f1c
- Migrate database part into Collabeditor setup - Fix create new action - Disable new button if there's no filemanager-editor installed
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - collabeditor - setup
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @package collabeditor
|
|
*/
|
|
|
|
$setup_info['collabeditor']['name'] = 'collabeditor';
|
|
$setup_info['collabeditor']['title'] = 'Collabeditor';
|
|
$setup_info['collabeditor']['version'] = '17.1';
|
|
$setup_info['collabeditor']['app_order'] = 1;
|
|
$setup_info['collabeditor']['enable'] = 2;
|
|
$setup_info['collabeditor']['autoinstall'] = false;
|
|
|
|
$setup_info['collabeditor']['tables'] = array('egw_collab_member', 'egw_collab_op', 'egw_collab_session');
|
|
|
|
$setup_info['collabeditor']['author'] = 'Hadi Nategh';
|
|
$setup_info['collabeditor']['maintainer'] = array(
|
|
'name' => 'EGroupware GmbH',
|
|
'url' => 'http://www.egroupware.org',
|
|
);
|
|
$setup_info['collabeditor']['license'] = 'GPL';
|
|
$setup_info['collabeditor']['description'] = 'Online document editing with webodf editor';
|
|
|
|
/* The hooks this app includes, needed for hooks registration */
|
|
$setup_info['collabeditor']['hooks']['filemanager-editor-link'] = 'EGroupware\collabeditor\Hooks::getEditorLink';
|
|
|
|
/* Dependencies for this app to work */
|
|
$setup_info['collabeditor']['depends'][] = array(
|
|
'appname' => 'filemanager',
|
|
'versions' => array('17.1')
|
|
);
|
|
$setup_info['collabeditor']['depends'][] = array(
|
|
'appname' => 'api',
|
|
'versions' => array('17.1')
|
|
); |