source: companies/serpro/news_admin/setup/setup.inc.php @ 903

Revision 903, 1.6 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
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';
16        $setup_info['news_admin']['version']   = '1.0.0';
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',
33                 'versions' => Array('0.9.14', '0.9.15','1.0.0')
34        );
35
Note: See TracBrowser for help on using the repository browser.