source: trunk/expressoMail1_2/inc/hook_admin.inc.php @ 1037

Revision 1037, 1.3 KB checked in by amuller, 15 years ago (diff)

Ticket #559 - Correção de problema, usando caminho relativo

  • 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        require_once '../header.inc.php';
9}
10
11        /**************************************************************************\
12        * eGroupWare                                                               *
13        * http://www.egroupware.org                                                *
14        * Written by Joseph Engo <jengo@phpgroupware.org>                          *
15        * --------------------------------------------                             *
16        *  This program is free software; you can redistribute it and/or modify it *
17        *  under the terms of the GNU General Public License as published by the   *
18        *  Free Software Foundation; either version 2 of the License, or (at your  *
19        *  option) any later version.                                              *
20        \**************************************************************************/
21
22{
23// Only Modify the $file and $title variables.....
24        $title = $appname;
25        $file = Array(
26                'Site Configuration' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiconfig.index&appname=' . $appname),
27        );
28//Do not modify below this line
29        display_section($appname,$title,$file);
30}
31?>
Note: See TracBrowser for help on using the repository browser.