source: sandbox/2.3-MailArchiver/filemanager/inc/hook_admin.inc.php @ 6779

Revision 6779, 1.7 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1<?php
2if(!isset($GLOBALS['phpgw_info'])){
3        $GLOBALS['phpgw_info']['flags'] = array(
4                'currentapp' => 'filemanager',
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                'Folders management'    => $GLOBALS['phpgw']->link('/index.php','menuaction='.$appname.'.uiconfig.folders'),
29                'Quota management'              => $GLOBALS['phpgw']->link('/index.php','menuaction='.$appname.'.uiconfig.quota'),
30                'Permissions of groups and users' => $GLOBALS['phpgw']->link('/index.php','menuaction='.$appname.'.uiconfig.groups_users'),
31                'Email notify uploads'  => $GLOBALS['phpgw']->link('/index.php', 'menuaction='.$appname.'.uiconfig.notifyUploads')
32        );
33//Do not modify below this line
34        display_section($appname,$title,$file);
35}
36?>
Note: See TracBrowser for help on using the repository browser.