source: branches/2.5/phpgwapi/setup/setup.inc.php @ 7917

Revision 7917, 2.3 KB checked in by douglas, 11 years ago (diff)

Ticket #3356 - Problema ao utilizar o expresso com IPv6

  • 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';
[3772]15        $setup_info['phpgwapi']['title']     = 'API';
[7917]16        $setup_info['phpgwapi']['version']   = '2.5.1';
[7504]17        $setup_info['phpgwapi']['versions']['current_header'] = '2.5.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';
[3613]35        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook';
36        $setup_info['phpgwapi']['tables'][]  = 'phpgw_addressbook_extra';
[2]37        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log';
38        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log_msg';
[3613]39        $setup_info['phpgwapi']['tables'][]  = 'phpgw_interserv';
[2]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.