source: trunk/include/page_header.php @ 398

Last change on this file since 398 was 398, checked in by gweltas, 20 years ago
  • Split of infos.lang.php
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 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-27 13:24:26 +0000 (Sat, 27 Mar 2004) $
10// | last modifier : $Author: gweltas $
11// | revision      : $Revision: 398 $
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$css = PHPWG_ROOT_PATH.'template/'.$user['template'].'/'.$user['template'].'.css';
34$template->assign_vars(array(
35  'CONTENT_ENCODING' => $lang_info['charset'],
36  'PAGE_TITLE' => $title,
37  'LANG'=>$lang_info['code'],
38  'DIR'=>$lang_info['direction'],
39 
40  'T_STYLE' => $css
41  ));
42
43// refresh
44if ( isset( $refresh ) && $refresh >0 && isset($url_link))
45{
46  $url = $url_link.'&amp;slideshow='.$refresh;
47  $template->assign_vars(array(
48                           'REFRESH_TIME' => $refresh,
49                           'U_REFRESH' => add_session_id( $url )
50                           ));
51  $template->assign_block_vars('refresh', array());
52}
53
54// Work around for "current" Apache 2 + PHP module which seems to not
55// cope with private cache control setting
56if (!empty( $_SERVER['SERVER_SOFTWARE'] )
57    and strstr( $_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
58{
59  header( 'Cache-Control: no-cache, pre-check=0, post-check=0, max-age=0' );
60}
61else
62{
63  header( 'Cache-Control: private, pre-check=0, post-check=0, max-age=0' );
64}
65header( 'Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT' );
66header( 'Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT' );
67
68$template->pparse('header');
69?>
Note: See TracBrowser for help on using the repository browser.