source: branches/2.2/phpgwapi/setup/setup.inc.php @ 5170

Revision 5170, 2.3 KB checked in by niltonneto, 12 years ago (diff)

Ticket #000 - Correção aplicada para publicar pacote Expresso 2.2.10

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
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']     = 'API';
16        $setup_info['phpgwapi']['version']   = '2.2.10';
17        $setup_info['phpgwapi']['versions']['current_header'] = '2.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        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook';
36        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook_extra';
37        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log';
38        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log_msg';
39        $setup_info['phpgwapi']['tables'][]  = 'phpgw_interserv';
40        $setup_info['phpgwapi']['tables'][]  = 'phpgw_vfs';
41        $setup_info['phpgwapi']['tables'][]  = 'phpgw_history_log';
42        $setup_info['phpgwapi']['tables'][]  = 'phpgw_async';
43
44
45
46
Note: See TracBrowser for help on using the repository browser.