source: trunk/preferences/setup/setup.inc.php @ 7223

Revision 7223, 1.5 KB checked in by acoutinho, 12 years ago (diff)

Ticket #3102 - Atualizar versionamento do Expresso e dos modulos para a versao 2.4.2

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Preferences                                                 *
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        $setup_info['preferences']['name']      = 'preferences';
14        $setup_info['preferences']['title']     = 'Preferences';
15        $setup_info['preferences']['version']   = '2.4.2';
16        $setup_info['preferences']['app_order'] = 1;
17        $setup_info['preferences']['tables']    = '';
18        $setup_info['preferences']['enable']    = 2;
19
20        /* The hooks this app includes, needed for hooks registration */
21        $setup_info['preferences']['hooks'][] = 'deleteaccount';
22        $setup_info['preferences']['hooks'][] = 'config';
23        $setup_info['preferences']['hooks'][] = 'manual';
24        $setup_info['preferences']['hooks'][] = 'preferences';
25        $setup_info['preferences']['hooks'][] = 'settings';
26
27        /* Dependencies for this app to work */
28        $setup_info['preferences']['depends'][] = array(
29                'appname' => 'phpgwapi',
30                'versions' => Array('2.4.2')
31        );
32?>
Note: See TracBrowser for help on using the repository browser.