source: trunk/include/page_tail.php @ 351

Last change on this file since 351 was 351, checked in by gweltas, 21 years ago

Template modification
Split of the french language file

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 500 bytes
Line 
1<?php
2$template->set_filenames(array('tail'=>'footer.tpl'));
3
4//------------------------------------------------------------- generation time
5
6$time = get_elapsed_time( $t2, get_moment() );
7
8$template->assign_vars(array(
9        'L_GEN_TIME' => $lang['generation_time'],
10        'S_TIME' =>  $time, 
11        'S_VERSION' => $conf['version'],
12        'U_SITE' => add_session_id( $conf['site_url'] )
13        )
14        );
15       
16if (DEBUG)
17{
18        $template->assign_block_vars('debug', array());
19}
20
21//
22// Generate the page
23//
24
25$template->pparse('tail');
26?>
Note: See TracBrowser for help on using the repository browser.