source: contrib/Resources/index.php @ 3524

Revision 3524, 749 bytes checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado módulo de recursos para a comunidade

  • Property svn:executable set to *
Line 
1<?php
2/**
3 * TimeSheet - index
4 *
5 * @link http://www.egroupware.org
6 * @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
7 * @package timesheet
8 * @copyright (c) 2005 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
9 * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
10 * @version $Id: index.php 22356 2006-08-26 16:32:29Z ralfbecker $
11 */
12
13
14
15
16        $phpgw_flags = Array(
17                'currentapp'    =>      'resources',
18                'noheader'      =>      True,
19                'nonavbar'      =>      True,
20                'noappheader'   =>      True,
21                'noappfooter'   =>      True,
22                'nofooter'      =>      True
23        );
24
25        $GLOBALS['phpgw_info']['flags'] = $phpgw_flags;
26        include('../header.inc.php');
27       
28
29
30
31        ExecMethod('resources.uiresources.index',$parms);
32        $GLOBALS['phpgw']->common->phpgw_exit();
33
34?>
35
Note: See TracBrowser for help on using the repository browser.