killivolt
Well-Known Member
They are now gone. What happened?
John
I've always thought those were pretty cool, maybe he didn't intend on it continuing. Maybe it's to much on the religious side of things?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
They are now gone. What happened?
John
$time = XenForo_Application::$time;
// CHRISTMAS (1ST DEC - 7TH JAN)
$christmasStart = mktime(0, 0, 0, 12, 1, date('Y'));
$christmasEnd = mktime(23, 59, 59, 12, 1, date('Y'));
$christmas1Start = mktime(0, 0, 0, 1, 1, date('Y'));
$christmas1End = mktime(23, 59, 59, 1, 7, date('Y'));
if ($christmasStart <= $time && $christmasEnd >= $time) {
return "showChristmasHeader";
} else if ($christmas1Start <= $time && $christmas1End >= $time) {
return "showChristmasHeader";
}