| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/brest/components/com_djclassifieds/views/checkout/tmpl/ |
Upload File : |
<?php
/**
* @package DJ-Classifieds
* @copyright Copyright (C) DJ-Extensions.com, All rights reserved.
* @license http://www.gnu.org/licenses GNU/GPL
* @author url: http://dj-extensions.com
* @author email: contact@dj-extensions.com
*/
defined ('_JEXEC') or die('Restricted access');
$app = JFactory::getApplication();
$par = $this->par;
$item = $this->item;
$quantity = $this->quantity;
?>
<div id="dj-classifieds" class="djcftheme-<?php echo $par->get('theme','default');?>">
<?php echo DJClassifiedsTheme::renderModule('djcf-top'); ?>
<?php echo DJClassifiedsTheme::renderModule('djcf-checkout-top'); ?>
<div class="djcf_checkout_outer clearfix">
<div class="title_top"><?php echo JText::_('COM_DJCLASSIFIEDS_CHECKOUT_DETAILS');?></div>
<div class="djcf_checkout_det">
<div class="ch_row">
<span class="ch_label">
<?php echo JText::_('COM_DJCLASSIFIEDS_ADVERT'); ?>:
</span>
<span class="ch_value">
<?php echo '<a href="'.$item->item_uri.'">'.$item->name.'</a>'; ?>
</span>
</div>
<div class="ch_row">
<span class="ch_label">
<?php echo JText::_('COM_DJCLASSIFIEDS_QUANTITY'); ?>:
</span>
<span class="ch_value">
<?php echo $quantity; ?>
</span>
</div>
<div class="ch_row">
<span class="ch_label">
<?php echo JText::_('COM_DJCLASSIFIEDS_PRICE'); ?>:
</span>
<span class="ch_value">
<?php echo DJClassifiedsTheme::priceFormat($item->price,$item->currency); ?>
</span>
</div>
<?php
foreach($this->extra_payments as $extra_p){
echo $extra_p;
}
?>
<div class="ch_row_total">
<span class="ch_label">
<?php echo JText::_('COM_DJCLASSIFIEDS_TOTAL'); ?>:
</span>
<span class="ch_value">
<?php $total = $item->price*$quantity;
$app->triggerEvent('onPrepareCheckouPaymentTotal', array(&$item, &$par, $quantity, &$total));
echo DJClassifiedsTheme::priceFormat($total,$item->currency); ?>
</span>
</div>
<div class="ch_row_button">
<a class="button button_cancel" href="<?php echo $item->item_uri; ?>">
<?php echo JText::_('COM_DJCLASSIFIEDS_CANCEL'); ?>
</a>
<form action="<?php echo JRoute::_('index.php'); ?>" method="post" name="djForm" id="djForm" class="form-validate" enctype="multipart/form-data">
<button class="button validate" type="submit" id="checkout_submit_b"><?php echo JText::_('COM_DJCLASSIFIEDS_BUYNOW'); ?></button>
<?php
foreach($this->extra_form as $extra_input){
echo $extra_input;
}
?>
<div class="clear_both"></div>
<input type="hidden" name="item_id" value="<?php echo $item->id; ?>">
<input type="hidden" name="cid" id="cid" value="<?php echo $item->cat_id; ?>">
<input type="hidden" name="quantity" value="<?php echo $quantity; ?>">
<input type="hidden" name="option" value="com_djclassifieds" />
<input type="hidden" name="view" value="checkout" />
<input type="hidden" name="task" value="saveCheckout" />
<input type="hidden" name="Itemid" value="<?php echo $app->input->getInt('Itemid',0); ?>" />
</form>
<div class="clear_both"></div>
</div>
</div>
</div>
<?php echo DJClassifiedsTheme::renderModule('djcf-checkout-bottom'); ?>
</div>