source: trunk/news_admin/index.php @ 49

Revision 49, 1.2 KB checked in by niltonneto, 17 years ago (diff)

Adicionado fckeditor para edição de notícias.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare - Webpage news admin                                          *
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        * This program was sponsered by Golden Glair productions                   *
12        * http://www.goldenglair.com                                               *
13        \**************************************************************************/
14
15
16        $phpgw_info = array();
17        $GLOBALS['phpgw_info']['flags'] = array(
18                'currentapp' => 'news_admin',
19                'noheader' => True,
20                'nonavbar' => True,
21        );
22        include('../header.inc.php');
23       
24        $ui = CreateObject('news_admin.uinews');
25        $ui->read_news();
26
27        $GLOBALS['phpgw']->common->phpgw_footer();
28?>
Note: See TracBrowser for help on using the repository browser.