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
/
components
/
com_virtuemart
/
.
/
sublayouts
/
bs3-addtocart.php
/
/
<?php /** * * Show the product details page * * @package VirtueMart * @subpackage * @author Max Milbers, Valerie Isaksen * @todo handle child products * @link http://www.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: default_addtocart.php 7833 2014-04-09 15:04:59Z Milbo $ */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die('Restricted access'); /** @var TYPE_NAME $viewData */ $product = $viewData['product']; if(isset($viewData['rowHeights'])){ $rowHeights = $viewData['rowHeights']; } else { $rowHeights['customfields'] = TRUE; } if(isset($viewData['position'])){ $positions = $viewData['position']; } else { $positions = 'addtocart'; } if(!is_array($positions)) $positions = array($positions); ?> <div id="addtocart-area-<?php echo $product->virtuemart_product_id ?>" class="addtocart-area"> <form method="post" class="product js-recalculate" action="<?php echo JRoute::_ ('index.php?option=com_virtuemart',false); ?>" autocomplete="off" > <div class="product-fields-wrapper"> <?php if(!empty($rowHeights['customfields'])) { foreach($positions as $pos){ echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$product,'position'=>$pos)); } } ?> </div> <?php if (!VmConfig::get('use_as_catalog', 0) and !($product->product_discontinued and !VmConfig::get('discontinuedPrdsBrowseable',1))) { echo shopFunctionsF::renderVmSubLayout('addtocartbar',array('product'=>$product)); } ?> <input type="hidden" name="option" value="com_virtuemart"/> <input type="hidden" name="view" value="cart"/> <input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>"/> <input type="hidden" name="pname" value="<?php echo $product->product_name ?>"/> <input type="hidden" name="pid" value="<?php echo $product->virtuemart_product_id ?>"/> <?php $itemId=vRequest::getInt('Itemid',false); if($itemId){ echo '<input type="hidden" name="Itemid" value="'.$itemId.'"/>'; } ?> </form> </div> <?php
/home/digilove/public_html/components/com_virtuemart/./sublayouts/bs3-addtocart.php