[345] | 1 | <?php |
---|
[362] | 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[26461] | 5 | // | Copyright(C) 2008-2014 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] | 25 | trigger_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] | 35 | if (!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 | |
---|
| 45 | if ($conf['show_queries']) |
---|
| 46 | { |
---|
| 47 | $debug_vars = array_merge($debug_vars, array('QUERIES_LIST' => $debug) ); |
---|
| 48 | } |
---|
| 49 | |
---|
[592] | 50 | if ($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 | |
---|
[13234] | 68 | //------------------------------------------------------------- mobile version |
---|
[13472] | 69 | if ( !empty($conf['mobile_theme']) && (get_device() != 'desktop' || mobile_theme())) |
---|
[13234] | 70 | { |
---|
| 71 | $template->assign('TOGGLE_MOBILE_THEME_URL', |
---|
| 72 | add_url_params( |
---|
[13472] | 73 | duplicate_index_url(), |
---|
[13234] | 74 | array('mobile' => mobile_theme() ? 'false' : 'true') |
---|
| 75 | ) |
---|
| 76 | ); |
---|
| 77 | } |
---|
| 78 | |
---|
[1595] | 79 | trigger_action('loc_end_page_tail'); |
---|
[345] | 80 | // |
---|
| 81 | // Generate the page |
---|
| 82 | // |
---|
[2231] | 83 | $template->parse('tail'); |
---|
| 84 | $template->p(); |
---|
| 85 | ?> |
---|