source: trunk/include/page_tail.php @ 345

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

Merge of the 1.3.1 release
Creation of an unique include file (common.php)
Creation of an unique define file (include/constants.php)
Modification of the installation procedure

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 613 bytes
Line 
1<?php
2$handle = $vtp->Open( './template/'.$user['template'].'/footer.vtp' );
3
4//------------------------------------------------------------- generation time
5$time = get_elapsed_time( $t2, get_moment() );
6$vtp->setGlobalVar( $handle, 'time', $time );
7
8$vtp->setGlobalVar( $handle, 'generation_time', $lang['generation_time'] );
9$vtp->setGlobalVar( $handle, 'version', $conf['version'] );
10$vtp->setGlobalVar( $handle, 'site_url', $conf['site_url'] );
11$vtp->setVarF( $handle, 'footer', './template/'.$user['template'].'/footer.htm' );
12
13//
14// Generate the page
15//
16
17$code = $vtp->Display( $handle, 0 );
18echo $code;
19?>
Note: See TracBrowser for help on using the repository browser.