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

Revision 45, 1.6 KB checked in by niltonneto, 17 years ago (diff)

Implementação do FCKEDITOR na edição de artigos no news_admin, para permitir texto rico.

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