source: trunk/include/page_header.php @ 397

Last change on this file since 397 was 393, checked in by gweltas, 20 years ago
  • Template migration
  • Admin Control Panel migration
  • Language migration
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// |                            page_header.php                            |
4// +-----------------------------------------------------------------------+
5// | application   : PhpWebGallery <http://phpwebgallery.net>              |
6// | branch        : BSF (Best So Far)                                     |
7// +-----------------------------------------------------------------------+
8// | file          : $RCSfile$
9// | last update   : $Date: 2004-03-20 00:52:37 +0000 (Sat, 20 Mar 2004) $
10// | last modifier : $Author: gweltas $
11// | revision      : $Revision: 393 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27 
28//
29// Start output of page
30//
31$template->set_filenames(array('header'=>'header.tpl'));
32
33$charset = empty($lang_info['charset'][$lang_info['current_code']])?
34  $lang_info['default']['charset']:$lang_info['charset'][$lang_info['current_code']];
35$dir = empty($lang_info['direction'][$lang_info['current_code']])?
36  $lang_info['default']['direction']:$lang_info['direction'][$lang_info['current_code']];
37
38$css = PHPWG_ROOT_PATH.'template/'.$user['template'].'/'.$user['template'].'.css';
39$template->assign_vars(array(
40  'CONTENT_ENCODING' => $charset,
41  'PAGE_TITLE' => $title,
42  'LANG'=>substr($lang_info['current_code'],0,2),
43  'DIR'=>$dir,
44 
45  'T_STYLE' => $css
46  ));
47
48// refresh
49if ( isset( $refresh ) && $refresh >0 && isset($url_link))
50{
51  $url = $url_link.'&amp;slideshow='.$refresh;
52  $template->assign_vars(array(
53                           'REFRESH_TIME' => $refresh,
54                           'U_REFRESH' => add_session_id( $url )
55                           ));
56  $template->assign_block_vars('refresh', array());
57}
58
59// Work around for "current" Apache 2 + PHP module which seems to not
60// cope with private cache control setting
61if (!empty( $_SERVER['SERVER_SOFTWARE'] )
62    and strstr( $_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
63{
64  header( 'Cache-Control: no-cache, pre-check=0, post-check=0, max-age=0' );
65}
66else
67{
68  header( 'Cache-Control: private, pre-check=0, post-check=0, max-age=0' );
69}
70header( 'Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT' );
71header( 'Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT' );
72
73$template->pparse('header');
74?>
Note: See TracBrowser for help on using the repository browser.