source: trunk/about.php @ 862

Last change on this file since 862 was 862, checked in by plg, 19 years ago
  • improvement: long localized messages are in HTML files instead of $lang array. This is the case of admin/help and about pages.
  • deletion: of unused functions (ts_to_mysqldt, is_image, TN_exists, check_date_format, date_convert, get_category_directories, get_used_metadata_list, array_remove, pwg_write_debug, get_group_restrictions, get_all_group_restrictions, is_group_allowed, style_select, deprecated_getAttribute).
  • new: many new contextual help pages to replace descriptions previously included in pages.
  • modification: reorganisation of language files. Deletion of unused language keys, alphabetical sort. No faq.lang.php anymore (replaced by help.html). Only done for en_UK.iso-8859-1.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-09-14 21:57:05 +0000 (Wed, 14 Sep 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 862 $
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//----------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31//----------------------------------------------------- template initialization
32//
33// Start output of page
34//
35$title= $lang['about_page_title'];
36$page['body_id'] = 'theAboutPage';
37include(PHPWG_ROOT_PATH.'include/page_header.php');
38
39$template->set_filenames(array('about'=>'about.tpl'));
40$template->assign_vars(
41  array(
42    'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php')
43    )
44  );
45
46// language files
47$user_langdir = PHPWG_ROOT_PATH.'language/'.$user['language'];
48$conf_langdir = PHPWG_ROOT_PATH.'language/'.$conf['default_language'];
49
50if (file_exists($user_langdir.'/about.html'))
51{
52  $html_file = $user_langdir.'/about.html';
53}
54else
55{
56  $html_file = $conf_langdir.'/about.html';
57}
58
59$template->set_filenames(array('about_content' => $html_file));
60$template->assign_var_from_handle('ABOUT_MESSAGE', 'about_content');
61 
62$template->parse('about');
63include(PHPWG_ROOT_PATH.'include/page_tail.php');
64?>
Note: See TracBrowser for help on using the repository browser.