%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 : 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 : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/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' />"; } } ?>