source: branches/2.2/expressoAdmin1_2/inc/access_denied.php @ 585

Revision 585, 1.3 KB checked in by niltonneto, 15 years ago (diff)

Correção de algumas traduções.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /************************************************************************************\
3        * Expresso Administração                                                                         *
4        * by Joao Alfredo Knopik Junior (joao.alfredo@gmail.com, jakjr@celepar.pr.gov.br)        *
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
12        $GLOBALS['phpgw_info'] = array();
13        $GLOBALS['phpgw_info']['flags']['currentapp'] = 'expressoAdmin1_2';
14        include('../../header.inc.php');
15
16        $template = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
17        $template->set_file(Array('expressoadmin' => 'access_denied.tpl'));
18       
19        $template->set_block('expressoadmin','main');
20       
21        $var = Array(
22                'lang_access_denied' => lang('You do not have access to this module') . '.',
23                'lang_back'     => lang('Back'),
24                'back_url'      => $GLOBALS['phpgw']->link('/expressoAdmin1_2/index.php')
25        );
26        $template->set_var($var);
27       
28        $template->pfp('out','main');
29        $GLOBALS['phpgw']->common->phpgw_footer();     
30?>
Note: See TracBrowser for help on using the repository browser.