| 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/components/com_djclassifieds/views/payment/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');
JHtml::_('behavior.formvalidator');
$par = $this->par;
$item = $this->item;
?>
<div id="dj-classifieds" class="djcftheme-<?php echo $par->get('theme','default');?> payment-order">
<?php echo DJClassifiedsTheme::renderModule('djcf-payment-top'); ?>
<div class="payment_back_to_edit payment_back_to_item">
<a class="back_to_edit back_to_item" href="<?php echo DJClassifiedsSEO::getItemRoute($item->id.':'.$item->alias,$item->cat_id.':'.$item->c_alias,$item->region_id.':'.$item->r_alias); ?>"><?php echo JText::_('COM_DJCLASSIFIEDS_BACK_TO_ITEM'); ?></a>
</div>
<table cellpadding="0" cellspacing="0" width="98%" border="0" class="paymentdetails first">
<tr>
<td class="td_title">
<h2><?php echo JText::_('COM_DJCLASSIFIEDS_PAYMENT_DETAILS');?></h2>
</td>
</tr>
<tr>
<td class="td_pdetails">
<?php
echo '<div class="pd_row pd_row_advert"><span>'.JText::_('COM_DJCLASSIFIEDS_ADVERT').'</span>';
echo '<span class="advert">';
echo '<a href="'.DJClassifiedsSEO::getItemRoute($item->id.':'.$item->alias,$item->cat_id.':'.$item->c_alias,$item->region_id.':'.$item->r_alias).'">';
if(isset($this->item_images[0])){ ?>
<img style="margin-right:10px;height: 100px;" alt="<?php echo $item->name; ?>" src="<?php echo JURI::base(true).$this->item_images[0]->thumb_s;?>" />
<?php }
echo $item->name;
echo '</a>';
echo '</span></div>';
echo '<div class="pd_row"><span>'.JText::_('COM_DJCLASSIFIEDS_PRICE').'</span>';
echo '<span class="price">'.DJClassifiedsTheme::priceFormat($this->order->price,$par->get('unit_price','')).'</span></div>';
echo '<div class="pd_row"><span>'.JText::_('COM_DJCLASSIFIEDS_QUANTITY').'</span>';
echo '<span class="price">'.$this->quantity.'</span></div>';
foreach($this->plugin_payments as $extra_p){
echo $extra_p;
}
if($par->get('vat_value','-1')>-1){
echo '<div class="pd_row pd_row_net"><span>'.JText::_('COM_DJCLASSIFIEDS_NET_COST').'</span>';
echo '<span class="price">'.DJClassifiedsTheme::priceFormat($this->price_net,$par->get('unit_price','')).'</span>';
echo '</div>';
echo '<div class="pd_row_tax"><span>'.JText::_('COM_DJCLASSIFIEDS_TAX').' ('.$par->get('vat_value','-1').'%)</span>';
echo '<span class="price">'.DJClassifiedsTheme::priceFormat($this->price_total-$this->price_net,$par->get('unit_price','')).'</span>';
echo '</div>';
}
echo '<div class="pd_row pd_row_total"><span>'.JText::_('COM_DJCLASSIFIEDS_PRICE').'</span>';
echo '<span class="price">'.DJClassifiedsTheme::priceFormat($this->price_total,$par->get('unit_price','')).'</span></div>';
?>
</td>
</tr>
</table>
<?php echo DJClassifiedsTheme::renderModule('djcf-payment-middle'); ?>
<?php
foreach($this->plugin_sections as $extra_section){
echo $extra_section;
}
?>
<table cellpadding="0" cellspacing="0" width="98%" border="0" class="paymentdetails">
<tr>
<td class="td_title">
<h2><?php echo JText::_("COM_DJCLASSIFIEDS_PAYMENT_METHODS"); ?></h2>
</td>
</tr>
<tr>
<td class="table_payment">
<table cellpadding="0" cellspacing="0" width="100%" border="0">
<?php foreach($this->PaymentMethodDetails AS $pminfo){ ?>
<tr>
<td class="payment_td">
<?php echo $pminfo; ?>
</td>
</tr>
<?php } ?>
<?php if(!$this->PaymentMethodDetails){ ?>
<tr>
<td class="no_results">
<?php echo JText::_('COM_DJCLASSIFIEDS_PAYMENT_METHODS_NO_RESULTS'); ?>
</td>
</tr>
<?php } ?>
</table>
</td>
</tr>
</table>
<?php echo DJClassifiedsTheme::renderModule('djcf-payment-bottom'); ?>
</div>