1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | $template->set_filenames(array('tail'=>'footer.tpl')); |
---|
24 | |
---|
25 | trigger_action('loc_begin_page_tail'); |
---|
26 | |
---|
27 | $template->assign( |
---|
28 | array( |
---|
29 | 'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '', |
---|
30 | 'PHPWG_URL' => defined('PHPWG_URL') ? PHPWG_URL : '', |
---|
31 | )); |
---|
32 | |
---|
33 | //--------------------------------------------------------------------- contact |
---|
34 | |
---|
35 | if (!is_a_guest()) |
---|
36 | { |
---|
37 | $template->assign( |
---|
38 | 'CONTACT_MAIL', get_webmaster_mail_address() |
---|
39 | ); |
---|
40 | } |
---|
41 | |
---|
42 | //------------------------------------------------------------- generation time |
---|
43 | $debug_vars = array(); |
---|
44 | |
---|
45 | if ($conf['show_queries']) |
---|
46 | { |
---|
47 | $debug_vars = array_merge($debug_vars, array('QUERIES_LIST' => $debug) ); |
---|
48 | } |
---|
49 | |
---|
50 | if ($conf['show_gt']) |
---|
51 | { |
---|
52 | if (!isset($page['count_queries'])) |
---|
53 | { |
---|
54 | $page['count_queries'] = 0; |
---|
55 | $page['queries_time'] = 0; |
---|
56 | } |
---|
57 | $time = get_elapsed_time($t2, get_moment()); |
---|
58 | |
---|
59 | $debug_vars = array_merge($debug_vars, |
---|
60 | array('TIME' => $time, |
---|
61 | 'NB_QUERIES' => $page['count_queries'], |
---|
62 | 'SQL_TIME' => number_format($page['queries_time'],3,'.',' ').' s') |
---|
63 | ); |
---|
64 | } |
---|
65 | |
---|
66 | $template->assign('debug', $debug_vars ); |
---|
67 | |
---|
68 | //------------------------------------------------------------- mobile version |
---|
69 | if ( !empty($conf['mobile_theme']) && (get_device() != 'desktop' || mobile_theme())) |
---|
70 | { |
---|
71 | $template->assign('TOGGLE_MOBILE_THEME_URL', |
---|
72 | add_url_params( |
---|
73 | duplicate_index_url(), |
---|
74 | array('mobile' => mobile_theme() ? 'false' : 'true') |
---|
75 | ) |
---|
76 | ); |
---|
77 | } |
---|
78 | |
---|
79 | trigger_action('loc_end_page_tail'); |
---|
80 | // |
---|
81 | // Generate the page |
---|
82 | // |
---|
83 | $template->parse('tail'); |
---|
84 | $template->p(); |
---|
85 | ?> |
---|