source: contrib/Dms/setup/setup.inc.php @ 3526

Revision 3526, 2.1 KB checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado modulos Timesheet e DMS para a comunidade.

  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Mydms                                                       *
4        * http://www.egroupware.org                                                *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11
12        /* Basic information about this app */
13        $setup_info['mydms']['name']      = 'mydms';
14        $setup_info['mydms']['title']     = 'mydms';
15        $setup_info['mydms']['version']   = '2.0.001';
16        $setup_info['mydms']['app_order'] = 5;
17        $setup_info['mydms']['enable']    = 1;
18
19        $setup_info['mydms']['author'] = 'Real SoftService';
20        $setup_info['mydms']['note']   = 'DMS(Document Management System for Egroupware';
21        $setup_info['mydms']['license']  = 'GPL';
22        $setup_info['mydms']['description'] =
23                'This module is ported from project mydms';
24
25        $setup_info['mydms']['maintainer'] = 'Lars Kneschke';
26        $setup_info['mydms']['maintainer_email'] = 'l.kneschke@metaways.de';
27 
28        /* The hooks this app includes, needed for hooks registration */
29        $setup_info['mydms']['hooks'][] = 'sidebox_menu';
30
31    /* The tables this app creates */
32        $setup_info['mydms']['tables']    = array(
33                'phpgw_mydms_acls',
34                'phpgw_mydms_documentcontent',
35                'phpgw_mydms_documents',
36                'phpgw_mydms_folders',
37                'phpgw_mydms_groupmembers',
38                'phpgw_mydms_groups',
39                'phpgw_mydms_notify',
40                'phpgw_mydms_documentlinks',
41                'phpgw_mydms_sessions',
42                'phpgw_mydms_userimages',
43                'phpgw_mydms_users',
44                'phpgw_mydms_keywordcategories',
45                'phpgw_mydms_keywords'
46        );
47        //$setup_info['mydms']['only_db'] = array('mysql');
48       
49        /* Dependencies for this app to work */
50        $setup_info['mydms']['depends'][] = array(
51                 'appname'  => 'phpgwapi',
52                 'versions' => Array('2.0.006')
53        );
54?>
Note: See TracBrowser for help on using the repository browser.