source: trunk/expressoMail1_2/inc/hook_preferences.inc.php @ 5509

Revision 5509, 1.4 KB checked in by gustavo, 12 years ago (diff)

Ticket #2488 - Adicionar cabecalho de licenca em arquivos que nao o possuem

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2                /***************************************************************************
3                * Expresso Livre                                                           *
4                * http://www.expressolivre.org                                             *
5                * --------------------------------------------                             *
6                *  This program is free software; you can redistribute it and/or modify it *
7                *  under the terms of the GNU General Public License as published by the   *
8                *  Free Software Foundation; either version 2 of the License, or (at your  *
9                *  option) any later version.                                              *
10                \**************************************************************************/
11               
12if(!isset($GLOBALS['phpgw_info'])){
13        $GLOBALS['phpgw_info']['flags'] = array(
14                'currentapp' => 'expressoMail1_2',
15                'nonavbar'   => true,
16                'noheader'   => true
17        );
18}
19require_once '../header.inc.php';
20
21
22        $title = $appname;
23        $file = array(
24                'Preferences'                   => $GLOBALS['phpgw']->link('/preferences/preferences.php','appname='.$appname),
25                'Expresso Offline'                      => $GLOBALS['phpgw']->link('/expressoMail1_2/offline_preferences.php'),
26                'Programed Archiving' => $GLOBALS['phpgw']->link('/expressoMail1_2/programed_archiving.php')
27        );
28        //Do not modify below this line
29        display_section($appname,$title,$file);
30?>
Note: See TracBrowser for help on using the repository browser.