2003-05-26 19:24:08 +00:00
|
|
|
<?php
|
|
|
|
/***************************************************************************
|
|
|
|
* about.php *
|
|
|
|
* ------------------ *
|
2003-08-24 07:40:56 +00:00
|
|
|
* application : PhpWebGallery 1.3 <http://phpwebgallery.net> *
|
|
|
|
* author : Pierrick LE GALL <pierrick@z0rglub.com> *
|
|
|
|
* *
|
|
|
|
* $Id$
|
2003-05-26 19:24:08 +00:00
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
//----------------------------------------------------------- personnal include
|
|
|
|
include_once( './include/init.inc.php' );
|
|
|
|
//----------------------------------------------------- template initialization
|
2004-01-18 02:13:02 +00:00
|
|
|
//
|
|
|
|
// Start output of page
|
|
|
|
//
|
|
|
|
$title= $lang['about_page_title'];
|
|
|
|
include('include/page_header.php');
|
|
|
|
|
2003-05-26 19:24:08 +00:00
|
|
|
$handle = $vtp->Open( './template/'.$user['template'].'/about.vtp' );
|
|
|
|
initialize_template();
|
|
|
|
|
2004-01-18 02:13:02 +00:00
|
|
|
$tpl = array('about_title','about_message','about_return');
|
2003-05-26 19:24:08 +00:00
|
|
|
templatize_array( $tpl, 'lang', $handle );
|
2003-07-21 19:59:57 +00:00
|
|
|
$vtp->setVar( $handle, 'user_template', $user['template'] );
|
2003-05-26 19:24:08 +00:00
|
|
|
|
|
|
|
$url = './category.php?'.$_SERVER['QUERY_STRING'];
|
|
|
|
$vtp->setVar( $handle, 'back_url', add_session_id( $url ) );
|
|
|
|
//----------------------------------------------------------- html code display
|
|
|
|
$code = $vtp->Display( $handle, 0 );
|
|
|
|
echo $code;
|
2004-01-18 02:13:02 +00:00
|
|
|
include('include/page_tail.php');
|
2003-05-26 19:24:08 +00:00
|
|
|
?>
|