source: trunk/include/page_header.php @ 387

Last change on this file since 387 was 371, checked in by z0rglub, 20 years ago

code refactoring

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 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-02-23 22:02:41 +0000 (Mon, 23 Feb 2004) $
10// | last modifier : $Author: z0rglub $
11// | revision      : $Revision: 371 $
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 = './template/'.$user['template'].'/'.$user['template'].'.css';
34
35$template->assign_vars(array(
36                         'S_CONTENT_ENCODING' => $lang['charset'],
37                         'T_STYLE' => $css, 
38                         'PAGE_TITLE' => $title
39                         ));
40
41// refresh
42if ( isset( $refresh ) && $refresh >0 && isset($url_link))
43{
44  $url = $url_link.'&amp;slideshow='.$refresh;
45  $template->assign_vars(array(
46                           'S_REFRESH_TIME' => $refresh,
47                           'U_REFRESH' => add_session_id( $url )
48                           ));
49  $template->assign_block_vars('refresh', array());
50}
51
52// Work around for "current" Apache 2 + PHP module which seems to not
53// cope with private cache control setting
54if (!empty( $_SERVER['SERVER_SOFTWARE'] )
55    and strstr( $_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
56{
57  header( 'Cache-Control: no-cache, pre-check=0, post-check=0, max-age=0' );
58}
59else
60{
61  header( 'Cache-Control: private, pre-check=0, post-check=0, max-age=0' );
62}
63header( 'Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT' );
64header( 'Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT' );
65
66$template->pparse('header');
67$vtp=new VTemplate;
68?>
Note: See TracBrowser for help on using the repository browser.