source: trunk/include/page_tail.php @ 13170

Last change on this file since 13170 was 12922, checked in by mistic100, 12 years ago

update Piwigo headers to 2012, last change before the expected (or not) apocalypse

  • Property svn:eol-style set to LF
File size: 2.7 KB
RevLine 
[345]1<?php
[362]2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[12922]5// | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
[2297]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// +-----------------------------------------------------------------------+
[351]23$template->set_filenames(array('tail'=>'footer.tpl'));
[345]24
[1595]25trigger_action('loc_begin_page_tail');
26
[2286]27$template->assign(
[469]28  array(
[754]29    'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '',
[12875]30    'PHPWG_URL' => defined('PHPWG_URL') ? PHPWG_URL : '',
[469]31    ));
[1021]32
33//--------------------------------------------------------------------- contact
34
[2029]35if (!is_a_guest())
[1021]36{
[2227]37  $template->assign(
38    'CONTACT_MAIL', get_webmaster_mail_address()
[1021]39    );
40}
41
[659]42//------------------------------------------------------------- generation time
[1092]43$debug_vars = array();
[2231]44
45if ($conf['show_queries'])
46{
47  $debug_vars = array_merge($debug_vars, array('QUERIES_LIST' => $debug) );
48}
49
[592]50if ($conf['show_gt'])
[351]51{
[672]52  if (!isset($page['count_queries']))
[660]53  {
[672]54    $page['count_queries'] = 0;
55    $page['queries_time'] = 0;
[660]56  }
[2231]57  $time = get_elapsed_time($t2, get_moment());
[1092]58
59  $debug_vars = array_merge($debug_vars,
[659]60    array('TIME' => $time,
[672]61          'NB_QUERIES' => $page['count_queries'],
[1092]62          'SQL_TIME' => number_format($page['queries_time'],3,'.',' ').' s')
63          );
[351]64}
[345]65
[2227]66$template->assign('debug', $debug_vars );
[1092]67
[1595]68trigger_action('loc_end_page_tail');
[345]69//
70// Generate the page
71//
[2231]72$template->parse('tail');
73$template->p();
74?>
Note: See TracBrowser for help on using the repository browser.