source: branches/2.2/calendar/setup/setup.inc.php @ 5167

Revision 5167, 2.5 KB checked in by niltonneto, 12 years ago (diff)

Ticket #000 - Versionamento e publicação do pacote Expresso 2.2.10

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Calendar                                                    *
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['calendar']['name']    = 'calendar';
14        $setup_info['calendar']['title']    = 'Calendar';
15        $setup_info['calendar']['version'] = '2.2.10';
16        $setup_info['calendar']['app_order'] = 3;
17        $setup_info['calendar']['enable']  = 1;
18
19        $setup_info['calendar']['author'] = 'Mark Peters';
20        $setup_info['calendar']['license']  = 'GPL';
21        $setup_info['calendar']['description'] =
22                'Powerful calendar with meeting request system and ACL security.';
23        $setup_info['calendar']['note'] =
24                'Bassed on Webcalendar by <a href="http://www.radix.net/~cknudsen" target="_blank">Craig Knudsen</a>.<p>
25                ';
26        $setup_info['calendar']['maintainer'] = array(
27                'name'  => 'Ralf Becker',
28                'email' => 'RalfBecker@outdoor-training.de'
29        );
30
31        $setup_info['calendar']['tables'][] = 'phpgw_cal';
32        $setup_info['calendar']['tables'][] = 'phpgw_cal_holidays';
33        $setup_info['calendar']['tables'][] = 'phpgw_cal_repeats';
34        $setup_info['calendar']['tables'][] = 'phpgw_cal_user';
35        $setup_info['calendar']['tables'][] = 'phpgw_cal_extra';
36
37        /* The hooks this app includes, needed for hooks registration */
38        $setup_info['calendar']['hooks'][] = 'add_def_prefs';
39        $setup_info['calendar']['hooks'][] = 'admin';
40        $setup_info['calendar']['hooks'][] = 'deleteaccount';
41        $setup_info['calendar']['hooks'][] = 'email';
42        $setup_info['calendar']['hooks'][] = 'home';
43        $setup_info['calendar']['hooks'][] = 'home_day';
44        $setup_info['calendar']['hooks'][] = 'home_month';
45        $setup_info['calendar']['hooks'][] = 'home_week';
46        $setup_info['calendar']['hooks'][] = 'home_year';
47        $setup_info['calendar']['hooks'][] = 'manual';
48        $setup_info['calendar']['hooks'][] = 'preferences';
49        $setup_info['calendar']['hooks'][] = 'settings';
50        $setup_info['calendar']['hooks'][] = 'sidebox_menu';
51
52        /* Dependencies for this app to work */
53        $setup_info['calendar']['depends'][] = array(
54                 'appname' => 'phpgwapi',
55                 'versions' => Array('2.2')
56        );
Note: See TracBrowser for help on using the repository browser.