Ejemplo n.º 1
0
 private function setCartLayout($cart, $intoSession = true)
 {
     if (!class_exists('VmConfig')) {
         require JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart' . DS . 'helpers' . DS . 'config.php';
     }
     VmConfig::loadConfig();
     $olgConfig = VmConfig::get('oncheckout_opc', true);
     VmConfig::set('oncheckout_opc', true);
     $cart->layoutPath = vmPlugin::getTemplatePath($this->_name, 'payment', 'cart');
     $cart->layout = 'cart';
     if ($intoSession) {
         $cart->setCartIntoSession();
     }
 }