Your IP : 216.73.216.41


Current Path : /home/purehotels/public_html/administrator/components/com_k2/views/media/
Upload File :
Current File : /home/purehotels/public_html/administrator/components/com_k2/views/media/view.html.php

<?php
/**
 * @version    2.8.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2017 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.view');

class K2ViewMedia extends K2View
{
    function display($tpl = null)
    {
        $application = JFactory::getApplication();
        $user = JFactory::getUser();
        $document = JFactory::getDocument();
        $type = JRequest::getCmd('type');
        $fieldID = JRequest::getCmd('fieldID');
        if ($type == 'video')
        {
            $mimes = "'video','audio'";
        }
        elseif ($type == 'image')
        {
            $mimes = "'image'";
        }
        else
        {
            $mimes = '';
        }
        $token = version_compare(JVERSION, '2.5', 'ge') ? JSession::getFormToken() : JUtility::getToken();

        $this->assignRef('mimes', $mimes);
        $this->assignRef('type', $type);
        $this->assignRef('fieldID', $fieldID);
        $this->assignRef('token', $token);

        if ($application->isAdmin())
        {
	        // Toolbar
	        JToolBarHelper::title(JText::_('K2_MEDIA_MANAGER'), 'k2.png');
            if (K2_JVERSION != '15')
            {
                JToolBarHelper::preferences('com_k2', 580, 800, 'K2_PARAMETERS');
            }
            else
            {
	            $toolbar = JToolBar::getInstance('toolbar');
                $toolbar->appendButton('Popup', 'config', 'K2_PARAMETERS', 'index.php?option=com_k2&view=settings', 800, 580);
            }

            $this->loadHelper('html');
            K2HelperHTML::subMenu();
        }

        parent::display($tpl);
    }
}