source: sandbox/filemanager/index.php @ 1506

Revision 1506, 590 bytes checked in by amuller, 15 years ago (diff)

Ticket #597 - Adicionando código do filemanager compatível com expresso

  • Property svn:executable set to *
Line 
1<?php
2       
3        // FIXME add copyright header
4        /*
5        eGroupWare - http://www.egroupware.org
6        written by Pim Snel <pim@lingewoud.nl>
7        */
8
9
10        $phpgw_flags = Array(
11                'currentapp'    =>      'filemanager',
12                'noheader'      =>      True,
13                'nonavbar'      =>      True,
14                'noappheader'   =>      True,
15                'noappfooter'   =>      True,
16                'nofooter'      =>      True
17        );
18
19        $GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
20
21        include('../header.inc.php');
22
23        Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=filemanager.uifilemanager.index'));
24        $GLOBALS['phpgw']->common->phpgw_exit();
25?>
Note: See TracBrowser for help on using the repository browser.