source: trunk/include/page_tail.php @ 13234

Last change on this file since 13234 was 13234, checked in by patdenice, 12 years ago

feature:2577
Many improvements

  • Property svn:eol-style set to LF
File size: 3.0 KB
Line 
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
25trigger_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
35if (!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
45if ($conf['show_queries'])
46{
47  $debug_vars = array_merge($debug_vars, array('QUERIES_LIST' => $debug) );
48}
49
50if ($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
69if (get_device() != 'desktop')
70{
71  $template->assign('TOGGLE_MOBILE_THEME_URL',
72      add_url_params(
73        make_index_url(),
74        array('mobile' => mobile_theme() ? 'false' : 'true')
75      )
76    );
77}
78
79trigger_action('loc_end_page_tail');
80//
81// Generate the page
82//
83$template->parse('tail');
84$template->p();
85?>
Note: See TracBrowser for help on using the repository browser.