uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
administrator
/
components
/
com_payzito
/
..
/
com_virtuemart
/
virtuemart.php
/
/
<?php defined( '_JEXEC' ) or die( 'Restricted access' ); /** * * @version $Id: admin.virtuemart.php 7256 2013-09-29 18:42:44Z Milbo $ * @package VirtueMart * @subpackage core * @copyright Copyright (C) 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. * See /administrator/components/com_virtuemart/COPYRIGHT.php for copyright notices and details. * * http://virtuemart.net */ if (!class_exists( 'VmConfig' )) require(JPATH_ROOT .'/administrator/components/com_virtuemart/helpers/config.php'); VmConfig::loadConfig(); vRequest::setRouterVars(); //VmConfig::showDebug('all'); vmRam('Start'); vmSetStartTime('vmStart'); $_controller = vRequest::getCmd('view', vRequest::getCmd('controller', 'virtuemart')); $t = vRequest::getCmd('task', $_controller); vmdebug('BE main controller with controller '.$_controller.' and task '. $t); vmLanguage::loadJLang('com_virtuemart'); $exe = true; // Require specific controller if requested if($_controller) { if (file_exists(VMPATH_ADMIN .'/controllers/'.$_controller.'.php')) { // Only if the file exists, since it might be a Joomla view we're requesting... require (VMPATH_ADMIN .'/controllers/'.$_controller.'.php'); } else { // try plugins JPluginHelper::importPlugin('vmextended'); $results = vDispatcher::trigger('onVmAdminController', array($_controller)); if (empty($results)) { $app = JFactory::getApplication(); $app->enqueueMessage('Fatal Error in maincontroller admin.virtuemart.php: Couldnt find file '.$_controller); $app->redirect('index.php?option=com_virtuemart'); } else { foreach($results as $res){ if($res){ $exe = false;break; } } } } } else { $app = JFactory::getApplication(); $app->enqueueMessage('Fatal Error in maincontroller admin.virtuemart.php: No controller given '.$_controller); $app->redirect('index.php?option=com_virtuemart'); } if($exe){ vmJsApi::jQuery(0); // Create the controller $_class = 'VirtueMartController'.ucfirst($_controller); if(!class_exists($_class)){ vmError('Serious Error could not find controller '.$_class,'Serious error, could not find class'); $app = JFactory::getApplication(); $app->enqueueMessage('Fatal Error in maincontroller admin.virtuemart.php: No controller given '.$_controller); $app->redirect('index.php?option=com_virtuemart'); } $controller = new $_class(); // Perform the Request task $controller->execute($t); vmTime('"'.$_class.'" Finished task '.$t,'vmStart'); vmRam('End'); vmRamPeak('Peak'); $controller->redirect(); } // pure php no closing tag
/home/digilove/public_html/administrator/components/com_payzito/../com_virtuemart/virtuemart.php