%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 : /var/www/html/old/administrator/components/com_k2/helpers/ |
Upload File : |
<?php /** * @version 2.6.x * @package K2 * @author JoomlaWorks http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die ; class K2HelperHTML { public static function subMenu() { $user = JFactory::getUser(); $view = JRequest::getCmd('view'); $view = JString::strtolower($view); $params = JComponentHelper::getParams('com_k2'); JSubMenuHelper::addEntry(JText::_('K2_ITEMS'), 'index.php?option=com_k2&view=items', $view == 'items'); JSubMenuHelper::addEntry(JText::_('K2_CATEGORIES'), 'index.php?option=com_k2&view=categories', $view == 'categories'); if (!$params->get('lockTags') || $user->gid > 23) { JSubMenuHelper::addEntry(JText::_('K2_TAGS'), 'index.php?option=com_k2&view=tags', $view == 'tags'); } JSubMenuHelper::addEntry(JText::_('K2_COMMENTS'), 'index.php?option=com_k2&view=comments', $view == 'comments'); if ($user->gid > 23) { JSubMenuHelper::addEntry(JText::_('K2_USERS'), 'index.php?option=com_k2&view=users', $view == 'users'); JSubMenuHelper::addEntry(JText::_('K2_USER_GROUPS'), 'index.php?option=com_k2&view=usergroups', $view == 'usergroups'); JSubMenuHelper::addEntry(JText::_('K2_EXTRA_FIELDS'), 'index.php?option=com_k2&view=extrafields', $view == 'extrafields'); JSubMenuHelper::addEntry(JText::_('K2_EXTRA_FIELD_GROUPS'), 'index.php?option=com_k2&view=extrafieldsgroups', $view == 'extrafieldsgroups'); } JSubMenuHelper::addEntry(JText::_('K2_MEDIA_MANAGER'), 'index.php?option=com_k2&view=media', $view == 'media'); JSubMenuHelper::addEntry(JText::_('K2_INFORMATION'), 'index.php?option=com_k2&view=info', $view == 'info'); } public static function stateToggler(&$row, $key, $property = 'published', $tasks = array('publish', 'unpublish'), $labels = array('K2_PUBLISH', 'K2_UNPUBLISH')) { $task = $row->$property ? $tasks[1] : $tasks[0]; $action = $row->$property ? JText::_($labels[1]) : JText::_($labels[0]); $class = 'k2Toggler'; $status = $row->$property ? 'k2Active' : 'k2Inactive'; $href = '<a class="'.$class.' '.$status.'" href="javascript:void(0);" onclick="return listItemTask(\'cb'.$key.'\',\''.$task.'\')" title="'.$action.'">'.$action.'</a>'; return $href; } public static function loadjQuery($ui = false, $mediaManager = false) { JLoader::register('K2HelperUtilities', JPATH_SITE.DS.'components'.DS.'com_k2'.DS.'helpers'.DS.'utilities.php'); $application = JFactory::getApplication(); $document = JFactory::getDocument(); $params = K2HelperUtilities::getParams('com_k2'); if ($document->getType() == 'html') { if (K2_JVERSION == '15') { JHtml::_('behavior.mootools'); } else if (K2_JVERSION == '25') { JHtml::_('behavior.framework'); } else { if($mediaManager) { $document->addScript('//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'); } else { JHtml::_('behavior.framework'); if ($application->isAdmin() || ($application->isSite() && $params->get('jQueryHandling'))) { JHtml::_('jquery.framework'); } } } $handling = $application->isAdmin() ? $params->get('backendJQueryHandling', 'remote') : $params->get('jQueryHandling', '1.8remote'); // jQuery if (K2_JVERSION != '30') { if ($handling == 'remote') { $document->addScript('//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'); } else if ($handling == 'local') { $document->addScript(JURI::root(true).'/media/k2/assets/js/jquery-1.8.3.min.js'); } else { if ($handling && JString::strpos($handling, 'remote') !== false) { // Remove this if statement in 2.7.0 if ($handling == '1.9remote') { $handling = '1remote'; } $document->addScript('//ajax.googleapis.com/ajax/libs/jquery/'.str_replace('remote', '', $handling).'/jquery.min.js'); } else if ($handling && JString::strpos($handling, 'remote') === false) { $document->addScript(JURI::root(true).'/media/k2/assets/js/jquery-'.$handling.'.min.js'); } } } // jQuery UI if ($application->isAdmin() || $ui) { // No conflict loaded when $ui requested or in the backend. // No need to reload for $mediaManager as the latter is always called with $ui $document->addScript(JURI::root(true).'/media/k2/assets/js/k2.noconflict.js'); if ($handling == 'local') { $document->addScript(JURI::root(true).'/media/k2/assets/js/jquery-ui-1.8.24.custom.min.js'); } else { $document->addScript('//ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js'); } } if ($mediaManager) { $document->addScript(JURI::root(true).'/media/k2/assets/js/elfinder.min.js?v=2.6.8'); } } } }