source: companies/celepar/help/inc/class.uihelp.inc.php @ 763

Revision 763, 592 bytes checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

Line 
1<?php
2        class uihelp
3        {
4                function view()
5                {
6                    $template = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
7                    $template->set_file(Array('manual' => 'index.tpl'));
8                    $template->set_var('title_help', lang('Help'));
9                    $template->set_var('lang_help', lang('Help'));
10                    $template->set_var('template_set', $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set']);
11                    $template->set_var('lang', $GLOBALS['phpgw_info']['user']['preferences']['common']['lang']);
12                    $template->set_block('manual','help');                 
13                    $template->pfp('out', 'manual');
14                }
15        }
16?>
Note: See TracBrowser for help on using the repository browser.