vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Template Hook help in Plugins (https://vborg.vbsupport.ru/showthread.php?t=289965)

TheSupportForum 10-31-2012 05:32 PM

Template Hook help in Plugins
 
Hi guys

im in a little need of support

this is my php script
PHP Code:

$date1 '2007-11-20 08:00:00';
$date2 date('Y-m-d H:i:s');
$ts1 strtotime($date1);
$ts2 strtotime($date2);
$seconds_diff $ts2 $ts1
$seconds_diff floor($seconds_diff/3600/24); echo " Day " $seconds_diff; echo " of the new world " 

and i need to use $template_hook[forumhome_above_forums]

i have tried

PHP Code:

$template_hook[forumhome_above_forums] .='
$date1 = '
2007-11-20 08:00:00';
$date2 = date('
Y-m-d H:i:s');
$ts1 = strtotime($date1);
$ts2 = strtotime($date2);
$seconds_diff = $ts2 - $ts1; 
$seconds_diff = floor($seconds_diff/3600/24); echo " Day " . $seconds_diff; echo " of the new world "
'


i get the following error

PHP Code:

Parse error:  syntax errorunexpected T_LNUMBER in /includes/class_bootstrap.php(430) : eval()'d code on line 10 

but can't see where i have gone wrong, can someone help ?

kh99 10-31-2012 06:24 PM

Just do this in place of the echo calls at the end:
Code:

$template_hook[forumhome_above_forums] .= " Day " . $seconds_diff . " of the new world ";

and if you want newlines before or after, insert <br /> in the string.

BTW, you don't need to make a string for the current date then convert it to a timestamp, you can just call time(), or use the vb constant TIMENOW (which is just set from time()). So you could do this:
Code:

$seconds_diff = TIMENOW - strtotime('2007-11-20 08:00:00');
$seconds_diff = floor($seconds_diff/3600/24);


and if you wanted to be a little more efficient, you could find out what the value of strtotime('2007-11-20 08:00:00') is and use it as a constant.

TheSupportForum 10-31-2012 06:30 PM

Quote:

Originally Posted by kh99 (Post 2377344)
Just do this in place of the echo calls at the end:
Code:

$template_hook[forumhome_above_forums] .= " Day " . $seconds_diff . " of the new world ";
and if you want newlines before or after, insert <br /> in the string.

BTW, you don't need to make a string for the current date then convert it to a timestamp, you can just call time(), or use the vb constant TIMENOW (which is just set from time()). So you could do this:
Code:

$seconds_diff = TIMENOW - strtotime('2007-11-20 08:00:00');
$seconds_diff = floor($seconds_diff/3600/24);

and if you wanted to be a little more efficient, you could find out what the value of strtotime('2007-11-20 08:00:00') is and use it as a constant.

Thank you, it worked a dream :)


All times are GMT. The time now is 01:39 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01027 seconds
  • Memory Usage 1,729KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (3)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete