source: trunk/about.php @ 351

Last change on this file since 351 was 351, checked in by gweltas, 20 years ago

Template modification
Split of the french language file

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1<?php
2/***************************************************************************
3 *                                about.php                                *
4 *                            ------------------                           *
5 *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
6 *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
7 *                                                                         *
8 *   $Id: about.php 351 2004-02-07 11:50:26Z gweltas $
9 *                                                                         *
10 ***************************************************************************/
11
12/***************************************************************************
13 *                                                                         *
14 *   This program is free software; you can redistribute it and/or modify  *
15 *   it under the terms of the GNU General Public License as published by  *
16 *   the Free Software Foundation;                                         *
17 *                                                                         *
18 ***************************************************************************/
19
20//----------------------------------------------------------- include
21$phpwg_root_path = './';
22include_once( $phpwg_root_path.'common.php' );
23//----------------------------------------------------- template initialization
24//
25// Start output of page
26//
27$title= $lang['about_page_title'];
28include('include/page_header.php');
29
30$template->set_filenames(array('about'=>'about.tpl'));
31initialize_template();
32
33$template->assign_vars(array(
34        'PAGE_TITLE' => $title,
35        'L_ABOUT' => $lang['about_message'],
36        'L_RETURN' =>  $lang['about_return'], 
37        'U_RETURN' => add_session_id('./category.php?'.$_SERVER['QUERY_STRING'])
38        )
39        );
40
41$template->pparse('about');
42include('include/page_tail.php');
43?>
Note: See TracBrowser for help on using the repository browser.