%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,mail,shell_exec,system,proc_open,popen,ini_alter,dl,proc_close,curl_exec,curl_multi_exec,readfile,parse_ini_file,escapeshellarg,escapeshellcmd,show_source,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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,mail,php_uname,phpinfo MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/modules/mod_b2j_k2_calendar/admin/elements/ |
Upload File : |
<?php /* ------------------------------------------------------------------------ * Bang2Joom K2 Calendar for Joomla 2.5+ * ------------------------------------------------------------------------ * Copyright (C) 2011-2012 Bang2Joom. All Rights Reserved. * @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html * Author: Bang2Joom * Websites: http://www.bang2joom.com ------------------------------------------------------------------------ */ defined('JPATH_BASE') or die; jimport('joomla.form.formfield'); jimport('joomla.application.component.helper'); jimport('joomla.error.error'); jimport( 'joomla.version' ); class JFormFieldb2jhidden extends JFormField { protected $type = 'b2jhidden'; function __construct() { parent::__construct(); $this->check_dependencies(); } protected function getLabel() { return null; } protected function getInput() { $doc = JFactory::getDocument(); $doc->addStyleSheet(JURI::root() . 'modules/mod_b2j_k2_calendar/admin/css/b2j_k2_calendar_admin.css'); $doc->addScript(JURI::root() . 'modules/mod_b2j_k2_calendar/admin/js/b2j_k2_calendar_admin.js'); $doc->addScript(JURI::root() . 'modules/mod_b2j_k2_calendar/admin/js/jscolor.js'); return null; } static function check_dependencies() { $k2_id = 1; if (!JComponentHelper::getComponent('com_k2', true)->enabled){ $k2_id = 0; }; $j_version = new JVersion(); echo "<script>if (".$k2_id." == 0) alert('K2 Component not detected, this module only works with K2 component. Please visit getk2.org to download it.')</script>"; echo "<input type='hidden' value='".(int)$j_version->getShortVersion()."' id='joomla_version' />"; } } ?>