source: trunk/phpgwapi/setup/setup.inc.php @ 1337

Revision 1337, 2.7 KB checked in by niltonneto, 15 years ago (diff)

Ticket #625 - Correções da rotina de atualização do arquivo header.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
RevLine 
[2]1<?php
2        /**************************************************************************\
3        * eGroupWare - phpgwapi setup                                              *
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
13        /* Basic information about this app */
14        $setup_info['phpgwapi']['name']      = 'phpgwapi';
15        $setup_info['phpgwapi']['title']     = 'phpgwapi';
[1323]16        $setup_info['phpgwapi']['version']   = '2.0.000';
[1337]17        $setup_info['phpgwapi']['versions']['current_header'] = '2.0';
[2]18        $setup_info['phpgwapi']['enable']    = 3;
19        $setup_info['phpgwapi']['app_order'] = 1;
20
21        /* The tables this app creates */
22        $setup_info['phpgwapi']['tables'][]  = 'phpgw_config';
23        $setup_info['phpgwapi']['tables'][]  = 'phpgw_applications';
24        $setup_info['phpgwapi']['tables'][]  = 'phpgw_acl';
25        $setup_info['phpgwapi']['tables'][]  = 'phpgw_accounts';
26        $setup_info['phpgwapi']['tables'][]  = 'phpgw_preferences';
27        $setup_info['phpgwapi']['tables'][]  = 'phpgw_sessions';
28        $setup_info['phpgwapi']['tables'][]  = 'phpgw_app_sessions';
29        $setup_info['phpgwapi']['tables'][]  = 'phpgw_access_log';
30        $setup_info['phpgwapi']['tables'][]  = 'phpgw_hooks';
31        $setup_info['phpgwapi']['tables'][]  = 'phpgw_languages';
32        $setup_info['phpgwapi']['tables'][]  = 'phpgw_lang';
33        $setup_info['phpgwapi']['tables'][]  = 'phpgw_nextid';
34        $setup_info['phpgwapi']['tables'][]  = 'phpgw_categories';
35        /*
36        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook';
37        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook_extra';
38        */
39        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log';
40        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log_msg';
41        /*$setup_info['phpgwapi']['tables'][]  = 'phpgw_interserv';*/
42        $setup_info['phpgwapi']['tables'][]  = 'phpgw_vfs';
43        $setup_info['phpgwapi']['tables'][]  = 'phpgw_history_log';
44        $setup_info['phpgwapi']['tables'][]  = 'phpgw_async';
45
46        /* Basic information about this app */
47        /*
48        $setup_info['notifywindow']['name']      = 'notifywindow';
49        $setup_info['notifywindow']['title']     = 'Notify Window';
50        $setup_info['notifywindow']['version']   = '1.0.0';
51        $setup_info['notifywindow']['enable']    = 2;
52        $setup_info['notifywindow']['app_order'] = 1;
53        $setup_info['notifywindow']['tables']    = '';
54        $setup_info['notifywindow']['hooks'][]   = 'home';
55        */
56
57
58
59
60
Note: See TracBrowser for help on using the repository browser.