source: trunk/news_admin/setup/setup.inc.php @ 1728

Revision 1728, 1.6 KB checked in by niltonneto, 14 years ago (diff)

Ticket #802 - Alterado as versões dos módulos, conforme modelo de versionamento.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
RevLine 
[2]1<?php
2        /**************************************************************************\
3        * eGroupWare - News                                                        *
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['news_admin']['name']      = 'news_admin';
15        //$setup_info['news_admin']['title']     = 'News Admin';
[1728]16        $setup_info['news_admin']['version']   = '2.1.000';
[2]17        $setup_info['news_admin']['app_order'] = 16;
18        $setup_info['news_admin']['enable']    = 1;
19
20        /* The tables this app creates */
21        $setup_info['news_admin']['tables']    = array('phpgw_news','phpgw_news_export');
22
23        /* The hooks this app includes, needed for hooks registration */
24        $setup_info['news_admin']['hooks'][] = 'admin';
25        $setup_info['news_admin']['hooks'][] = 'home';
26        $setup_info['news_admin']['hooks'][] = 'sidebox_menu';
27        $setup_info['news_admin']['hooks'][] = 'settings';
28        $setup_info['news_admin']['hooks'][] = 'preferences';
29
30        /* Dependencies for this app to work */
31        $setup_info['news_admin']['depends'][] = array(
32                 'appname' => 'phpgwapi',
[1728]33                 'versions' => Array('2.1')
[2]34        );
35
Note: See TracBrowser for help on using the repository browser.