source: branches/2.2/contactcenter/templates/default/head.inc.php @ 3410

Revision 3410, 3.8 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1309 - Escolha automática do tema, em função da url do cliente.

  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * phpGroupWare                                                             *
4        * http://www.phpgroupware.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
12
13        if($GLOBALS['phpgw_info']['user']['preferences']['common']['show_generation_time'])
14        {
15                $mtime = microtime();
16                $mtime = explode(' ',$mtime);
17                $mtime = $mtime[1] + $mtime[0];
18                $GLOBALS['page_start_time'] = $mtime;
19        }
20
21        // get used language code
22        $lang_code = $GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
23
24        $bodyheader = ' bgcolor="' . $GLOBALS['phpgw_info']['theme']['bg_color'] . '" alink="'
25                . $GLOBALS['phpgw_info']['theme']['alink'] . '" link="' . $GLOBALS['phpgw_info']['theme']['link'] . '" vlink="'
26                . $GLOBALS['phpgw_info']['theme']['vlink'] . '"';
27
28        if(!$GLOBALS['phpgw_info']['server']['htmlcompliant'])
29        {
30                $bodyheader .= '';
31        }
32
33        #_debug_array($GLOBALS['phpgw_info']['user']['preferences']['common']);
34        $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/css/'.get_theme().'.css';
35        if(!file_exists($theme_css))
36        {
37                $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/css/'.get_theme().'.css';
38        }
39
40        //pngfix defaults to yes
41        if(!$GLOBALS['phpgw_info']['user']['preferences']['common']['disable_pngfix'])
42        {
43                $pngfix_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/js/pngfix.js';
44                $pngfix ='<!-- This solves the Internet Explorer PNG-transparency bug, but only for IE 5.5 and higher -->
45                <!--[if gte IE 5.5000]>
46                <script src="'.$pngfix_src.'" type="text/javascript">
47                </script>
48                <![endif]-->';
49        }
50
51        if(!$GLOBALS['phpgw_info']['user']['preferences']['common']['disable_slider_effects'])
52        {
53                $slider_effects_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/js/slidereffects.js';
54                $slider_effects = '<script src="'.$slider_effects_src.'" type="text/javascript">
55                </script>';
56        }
57        else
58        {
59                $simple_show_hide_src = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/celepar/js/simple_show_hide.js';
60                $simple_show_hide = '<script src="'.$simple_show_hide_src.'" type="text/javascript">
61                </script>';
62        }
63
64        $tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
65        $tpl->set_unknowns('remove');
66        $tpl->set_file(array('_head' => 'head.tpl'));
67        $tpl->set_block('_head','head');
68
69        $app = $GLOBALS['phpgw_info']['flags']['currentapp'];
70        $app = $app ? ' ['.(isset($GLOBALS['phpgw_info']['apps'][$app]) ? $GLOBALS['phpgw_info']['apps'][$app]['title'] : lang($app)).']':'';
71
72        $var = Array(
73                'img_icon'      => PHPGW_IMAGES_DIR . '/favicon.ico',
74                'img_shortcut'  => PHPGW_IMAGES_DIR . '/favicon.ico',
75                'pngfix'        => $pngfix,
76                'slider_effects'=> $slider_effects,
77                'simple_show_hide'=> $simple_show_hide,
78                'lang_code'=> $lang_code,
79                'charset'       => $GLOBALS['phpgw']->translation->charset(),
80                'font_family'   => $GLOBALS['phpgw_info']['theme']['font'],
81                'website_title' => $GLOBALS['phpgw_info']['server']['site_title'].$app,
82                'body_tags'     => $bodyheader .' '. $GLOBALS['phpgw']->common->get_body_attribs(),
83                'theme_css'     => $theme_css,
84                'css'           => $GLOBALS['phpgw']->common->get_css(),
85                'java_script'   => $GLOBALS['phpgw']->common->get_java_script() );
86        $tpl->set_var($var);
87        $tpl->pfp('out','head');
88        unset($tpl);
89?>
Note: See TracBrowser for help on using the repository browser.