%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/modules/mod_countdown/ |
Upload File : |
<?php /* ====================================================== # Countdown for Joomla! - v3.2.1 (Free version) # ------------------------------------------------------- # For Joomla! CMS # Author: Web357 (Yiannis Christodoulou) # Copyright (©) 2009-2019 Web357. All rights reserved. # License: GNU/GPLv3, http://www.gnu.org/licenses/gpl-3.0.html # Website: https:/www.web357.com/ # Demo: https://demo.web357.com/joomla/countdown # Support: support@web357.com # Last modified: 11 Jun 2019, 13:11:46 ========================================================= */ defined('_JEXEC') or die; // get helper require_once(dirname(__FILE__).'/helper.php'); $modWeb357CountDownHelper = new modWeb357CountDownHelper(); // Default Vars jimport('joomla.environment.uri' ); $host = JURI::root(); $document = JFactory::getDocument(); // Parameters $layout = $params->get('layout', 'default'); $date = $params->get('date', '14-06-2018'); $time = $params->get('time', '15:00'); $fronttext = $params->get('fronttext', 'The FIFA World Cup 2018 in Russia will start in'); $endtext = $params->get('endtext', '. Stay tunned!'); $finish = $params->get('finish', 'The FIFA World Cup 2018 in Russia has been started!'); $day = substr($date,0,2); $month = substr($date,3,2); $year = substr($date,6,4); $hour = substr($time,0,2); $minutes = substr($time,3,2); $dateformat = $month.'/'.$day.'/'.$year.' '.$hour.':'.$minutes; // Print Layout require(JModuleHelper::getLayoutPath('mod_countdown', $layout));