| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/modules/mod_count/ |
Upload File : |
<?php
/**
* Joomla Countdown Module
*
* @author Robert Concha <rob@cyfervoid.com>
* @package module
* @copyright Copyright (C) 2008 - 2009 Cyfervoid.com All rights reserved.
*/
defined('_JEXEC') or die('Restricted access');
require(dirname(__FILE__).DS.'helper.php');
$targetDate = $params->get('count_date', 0);
$tzone = $params->get('timezone', 0);
$event_txt = $params->get('event_txt', 0);
$front_txt = $params->get('front_txt', 0);
$c_module = new modCountHelper( $targetDate, $tzone, $event_txt );
$diffdate = $c_module->datediff("s", $c_module->curtime, $targetDate);
$c_module->getCountDown( $params, $diffdate, $front_txt );
?>