| 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/ghostad/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');
/* This is a template for creating Ghost Ad content */
?>
<div class="ghostad_content">
<div class="row-fluid row">
<div class="span8 col-md-8">
<?php if($item->category_path) { ?>
<div class="ga_section category">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_CATEGORY'); ?></h4>
<p class="ga_section_value category_content"><?php echo $item->category_path; ?></p>
</div>
<?php } ?>
<?php if($item->description || $item->intro_desc) { ?>
<div class="ga_section description">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_DESCRIPTION'); ?></h4>
<?php if($item->intro_desc) { ?>
<p class="ga_section_value intro_desc_content"><?php echo $item->intro_desc; ?></p>
<?php } ?>
<?php if($item->description) { ?>
<p class="ga_section_value desc_content"><?php echo $item->description; ?></p>
<?php } ?>
</div>
<?php } ?>
<?php if($item->video) { ?>
<div class="ga_section video">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_VIDEO'); ?></h4>
<p class="ga_section_value">
<a href="<?php echo $item->video; ?>" target="_blank">
<?php echo $item->video; ?></a>
</p>
</div>
<?php } ?>
<?php if($item->fields) { ?>
<div class="ga_section fields">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_CUSTOM_DETAILS'); ?></h4>
<?php foreach($item->fields as $field) { ?>
<div class="ga_row row_<?php echo $field->name;?>">
<span class="ga_row_label"><?php echo JText::_($field->label); ?>:</span>
<span class="ga_row_value"><?php echo $field->value_text; ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>
<div class="span4 col-md-4">
<?php if($item->price) { ?>
<div class="ga_section price">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_PRICE'); ?></h4>
<p class="ga_section_value"><?php echo DJClassifiedsTheme::priceFormat($item->price, $item->currency); ?></p>
</div>
<?php } ?>
<div class="ga_section author">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_CREATED_BY'); ?></h4>
<?php if($item->author) { ?>
<p class="ga_section_value"><?php echo $item->author; ?></p>
<?php } else { ?>
<p class="ga_section_value"><?php echo JText::_('COM_DJCLASSIFIEDS_GUEST'); ?></p>
<?php } ?>
</div>
<?php if($item->region_path) { ?>
<div class="ga_section localization">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_LOCALIZATION'); ?></h4>
<p class="ga_section_value"><?php echo $item->region_path; ?></p>
</div>
<?php } ?>
<div class="ga_section details">
<h4><?php echo JText::_('COM_DJCLASSIFIEDS_AD_DETAILS'); ?></h4>
<div class="ga_row">
<span class="ga_row_label label"><?php echo JText::_('COM_DJCLASSIFIEDS_AD_ID'); ?>:</span>
<span class="ga_row_value"><?php echo $item->id; ?></span>
</div>
<div class="ga_row">
<span class="ga_row_label"><?php echo JText::_('COM_DJCLASSIFIEDS_DISPLAYED'); ?>:</span>
<span class="ga_row_value"><?php echo $item->display; ?></span>
</div>
<div class="ga_row">
<span class="ga_row_label"><?php echo JText::_('COM_DJCLASSIFIEDS_AD_ADDED'); ?>:</span>
<span class="ga_row_value">
<?php echo DJClassifiedsTheme::formatDate(strtotime($item->date_start)); ?>
</span>
</div>
<div class="ga_row">
<span class="ga_row_label"><?php echo JText::_('COM_DJCLASSIFIEDS_AD_EXPIRES'); ?>:</span>
<span class="ga_row_value">
<?php echo DJClassifiedsTheme::formatDate(strtotime($item->date_exp)); ?>
</span>
</div>
</div>
</div>
</div>
</div>