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-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | file : $Id: page_tail.php 2029 2007-06-05 22:01:15Z rub $ |
---|
8 | // | last update : $Date: 2007-06-05 22:01:15 +0000 (Tue, 05 Jun 2007) $ |
---|
9 | // | last modifier : $Author: rub $ |
---|
10 | // | revision : $Revision: 2029 $ |
---|
11 | // +-----------------------------------------------------------------------+ |
---|
12 | // | This program is free software; you can redistribute it and/or modify | |
---|
13 | // | it under the terms of the GNU General Public License as published by | |
---|
14 | // | the Free Software Foundation | |
---|
15 | // | | |
---|
16 | // | This program is distributed in the hope that it will be useful, but | |
---|
17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
19 | // | General Public License for more details. | |
---|
20 | // | | |
---|
21 | // | You should have received a copy of the GNU General Public License | |
---|
22 | // | along with this program; if not, write to the Free Software | |
---|
23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
24 | // | USA. | |
---|
25 | // +-----------------------------------------------------------------------+ |
---|
26 | $template->set_filenames(array('tail'=>'footer.tpl')); |
---|
27 | |
---|
28 | trigger_action('loc_begin_page_tail'); |
---|
29 | |
---|
30 | $template->assign_vars( |
---|
31 | array( |
---|
32 | 'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '', |
---|
33 | 'PHPWG_URL' => PHPWG_URL, |
---|
34 | |
---|
35 | 'L_TITLE_MAIL' => urlencode($lang['title_send_mail']), |
---|
36 | )); |
---|
37 | |
---|
38 | //--------------------------------------------------------------------- contact |
---|
39 | |
---|
40 | if (!is_a_guest()) |
---|
41 | { |
---|
42 | $template->assign_block_vars( |
---|
43 | 'contact', |
---|
44 | array( |
---|
45 | 'MAIL' => get_webmaster_mail_address() |
---|
46 | ) |
---|
47 | ); |
---|
48 | } |
---|
49 | |
---|
50 | //------------------------------------------------------------- generation time |
---|
51 | $debug_vars = array(); |
---|
52 | if ($conf['show_gt']) |
---|
53 | { |
---|
54 | $time = get_elapsed_time($t2, get_moment()); |
---|
55 | |
---|
56 | if (!isset($page['count_queries'])) |
---|
57 | { |
---|
58 | $page['count_queries'] = 0; |
---|
59 | $page['queries_time'] = 0; |
---|
60 | } |
---|
61 | |
---|
62 | $debug_vars = array_merge($debug_vars, |
---|
63 | array('TIME' => $time, |
---|
64 | 'NB_QUERIES' => $page['count_queries'], |
---|
65 | 'SQL_TIME' => number_format($page['queries_time'],3,'.',' ').' s') |
---|
66 | ); |
---|
67 | } |
---|
68 | |
---|
69 | if ($conf['show_queries']) |
---|
70 | { |
---|
71 | $debug_vars = array_merge($debug_vars, array('QUERIES_LIST' => $debug) ); |
---|
72 | } |
---|
73 | |
---|
74 | if ( !empty($debug_vars) ) |
---|
75 | { |
---|
76 | $template->assign_block_vars('debug',$debug_vars ); |
---|
77 | } |
---|
78 | |
---|
79 | trigger_action('loc_end_page_tail'); |
---|
80 | // |
---|
81 | // Generate the page |
---|
82 | // |
---|
83 | $template->parse('tail'); |
---|
84 | |
---|
85 | $template->p(); |
---|
86 | ?> |
---|