source: branches/2.2/expressoMail1_2/inc/hook_admin.inc.php @ 4957

Revision 4957, 1.4 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #2083 - Corrigido para que a add de novos RSS é feito apenas pelo administrador

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2if(!isset($GLOBALS['phpgw_info'])){
3        $GLOBALS['phpgw_info']['flags'] = array(
4                'currentapp' => 'expressoMail1_2',
5                'nonavbar'   => true,
6                'noheader'   => true
7        );
8}
9require_once '../header.inc.php';
10
11
12        /**************************************************************************\
13        * eGroupWare                                                               *
14        * http://www.egroupware.org                                                *
15        * Written by Joseph Engo <jengo@phpgroupware.org>                          *
16        * --------------------------------------------                             *
17        *  This program is free software; you can redistribute it and/or modify it *
18        *  under the terms of the GNU General Public License as published by the   *
19        *  Free Software Foundation; either version 2 of the License, or (at your  *
20        *  option) any later version.                                              *
21        \**************************************************************************/
22
23{
24// Only Modify the $file and $title variables.....
25        $title = $appname;
26        $file = Array(
27                'Site Configuration' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiconfig.index&appname=' . $appname),
28                'RSS Reader' => $GLOBALS['phpgw']->link('/index.php','menuaction=expressoMail1_2.uiconfigRSS.editRss')
29        );
30       
31//Do not modify below this line
32        display_section($appname,$title,$file);
33}
34?>
Note: See TracBrowser for help on using the repository browser.