| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/administrator/components/com_virtuemart/views/media/ |
Upload File : |
<?php
/**
*
* Description
*
* @package VirtueMart
* @subpackage
* @author
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: view.html.php 10649 2022-05-05 14:29:44Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
/**
* HTML View class for the VirtueMart Component
*
* @package VirtueMart
* @author
*/
class VirtuemartViewMedia extends VmViewAdmin {
function display($tpl = null) {
$this->vendorId=vmAccess::isSuperVendor();
// TODO add icon for media view
$this->SetViewTitle();
$model = VmModel::getModel('media');
$layoutName = vRequest::getCmd('layout', 'default');
if ($layoutName == 'edit') {
$this->media = $model->getFile();
$this->addStandardEditViewCommands();
}
else {
$virtuemart_product_id = vRequest::getInt('virtuemart_product_id');
if(is_array($virtuemart_product_id) && count($virtuemart_product_id) > 0){
$virtuemart_product_id = (int)$virtuemart_product_id[0];
} else {
$virtuemart_product_id = (int)$virtuemart_product_id;
}
$cat_id = vRequest::getInt('virtuemart_category_id',0);
if(vmAccess::manager('media.new')){
JToolbarHelper::custom('synchronizeMedia', 'new', 'new', vmText::_('COM_VIRTUEMART_TOOLS_SYNC_MEDIA_FILES'),false);
}
$this->addStandardDefaultViewCommands(true, false);
if(vmAccess::manager('media.delete')){
//JToolbarHelper::custom('deleteMedia', 'delete', 'deleteFile', vmText::_('COM_VM_MEDIA_DELETE_FILES'),false);
//JToolbarHelper::custom('deleteEntry', 'delete', 'deleteEntry', vmText::_('COM_VM_MEDIA_DELETE_ENTRY'),false);
$bar = JToolbar::getInstance('toolbar');
$bar->appendButton('Confirm', 'COM_VM_MEDIA_DELETE_CONFIRM', 'delete', 'COM_VM_MEDIA_FILES_DELETE', 'deleteFiles', true);
$bar->appendButton('Standard', 'delete', 'JTOOLBAR_DELETE', 'remove', true);
//$bar->appendButton('Confirm', 'COM_VM_MEDIA_DELETE_CONFIRM', 'delete', $alt, $task, true);
//JToolbarHelper::deleteList('COM_VM_MEDIA_DELETE_CONFIRM');
JToolbarHelper::spacer('10');
}
$this->addStandardDefaultViewLists($model,null,null,'searchMedia');
$options = array( '' => vmText::_('COM_VIRTUEMART_LIST_ALL_TYPES'),
'product' => vmText::_('COM_VIRTUEMART_PRODUCT'),
'category' => vmText::_('COM_VIRTUEMART_CATEGORY'),
'manufacturer' => vmText::_('COM_VIRTUEMART_MANUFACTURER'),
'vendor' => vmText::_('COM_VIRTUEMART_VENDOR')
);
$this->lists['search_type'] = VmHTML::selectList('search_type', vRequest::getVar('search_type'),$options,1,'','onchange="this.form.submit();" style="width:180px;"');
$vendorId = vmAccess::getVendorId();
if(vmAccess::manager('managevendors')){
$vendorId = strtolower (JFactory::getApplication()->getUserStateFromRequest ('com_virtuemart.media.virtuemart_vendor_id', 'virtuemart_vendor_id', $vendorId, 'int'));
}
$this->lists['vendors'] = Shopfunctions::renderVendorList($vendorId, 'virtuemart_vendor_id', true);
$options = array( '' => vmText::_('COM_VIRTUEMART_LIST_ALL_ROLES'),
'file_is_displayable' => vmText::_('COM_VIRTUEMART_FORM_MEDIA_DISPLAYABLE'),
'file_is_downloadable' => vmText::_('COM_VIRTUEMART_FORM_MEDIA_DOWNLOADABLE'),
'file_is_forSale' => vmText::_('COM_VIRTUEMART_FORM_MEDIA_SET_FORSALE'),
);
$this->lists['search_role'] = VmHTML::selectList('search_role', vRequest::getVar('search_role'),$options,1,'','onchange="this.form.submit();" style="width:180px"');
$findUnusedMedias = vRequest::getWord('findUnusedMedias', false);
$onlyMissing = vRequest::getCmd('missing',false);
if($onlyMissing){
$this->files = $model->findMissingMedias($virtuemart_product_id,$cat_id);
} else if($findUnusedMedias){
$this->files = $model->findUnusedMedias();
} else {
$this->files = $model->getFiles(false,false,$virtuemart_product_id,$cat_id);
}
$this->pagination = $model->getPagination();
}
parent::display($tpl);
}
}
// pure php no closing tag