Ignore:
Timestamp:
10/27/09 11:11:49 (15 years ago)
Author:
amuller
Message:

Ticket #597 - Melhorias no módulo de gerenciamento de arquivos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/filemanager/inc/hook_admin.inc.php

    r1506 r1529  
    11<?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'; 
    210 
     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        ); 
     29//Do not modify below this line 
     30        display_section($appname,$title,$file); 
     31} 
    332?> 
Note: See TracChangeset for help on using the changeset viewer.