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

Revision 3031, 2.1 KB checked in by niltonneto, 14 years ago (diff)

Ticket #1135 - Ajuste da atualização do header.inc.php, setup dos módulos e API.

  • 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']     = 'phpgwapi';
16        $setup_info['phpgwapi']['version']   = '2.2.000';
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_log';
36        $setup_info['phpgwapi']['tables'][]  = 'phpgw_log_msg';
37        $setup_info['phpgwapi']['tables'][]  = 'phpgw_vfs';
38        $setup_info['phpgwapi']['tables'][]  = 'phpgw_history_log';
39        $setup_info['phpgwapi']['tables'][]  = 'phpgw_async';
40
41
42
43
Note: See TracBrowser for help on using the repository browser.