Your IP : 216.73.216.193


Current Path : /home/poneycluc/www/plugins/system/t4/themes/base/html/com_contact/contact/
Upload File :
Current File : /home/poneycluc/www/plugins/system/t4/themes/base/html/com_contact/contact/default.php

<?php
/**
T4 Overide
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Helper\ContentHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\FileLayout;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\CMS\Router\Route;
use Joomla\Component\Contact\Site\Helper\RouteHelper;

$com_path = JPATH_ROOT . 'components/com_contact';
if(!class_exists('ContactHelperRoute')){
	if(version_compare(JVERSION, '4', 'ge')){
		class ContactHelperRoute extends \Joomla\Component\Contact\Site\Helper\RouteHelper{};
	}else{
		JLoader::register('ContactHelperRoute', $com_path . '/helpers/route.php');
	}
}
$tparams = $this->item->params;
?>

<div class="contact<?php echo $this->pageclass_sfx; ?>" itemscope itemtype="https://schema.org/Person">
	<?php if ($tparams->get('show_page_heading')) : ?>
		<h1>
			<?php echo $this->escape($tparams->get('page_heading')); ?>
		</h1>
	<?php endif; ?>

	<?php if ($this->item->name && $tparams->get('show_name')) : ?>
		<div class="page-header">
			<h2>
				<?php if ($this->item->published == 0) : ?>
					<span class="label label-warning"><?php echo Text::_('JUNPUBLISHED'); ?></span>
				<?php endif; ?>
				<span class="contact-name" itemprop="name"><?php echo $this->item->name; ?></span>
			</h2>
		</div>
	<?php endif; ?>

	<?php $show_contact_category = $tparams->get('show_contact_category'); ?>

	<?php if ($show_contact_category === 'show_no_link') : ?>
		<h3>
			<span class="contact-category"><?php echo $this->item->category_title; ?></span>
		</h3>
	<?php elseif ($show_contact_category === 'show_with_link') : ?>
		<?php $contactLink = ContactHelperRoute::getCategoryRoute($this->item->catid); ?>
		<h3>
			<span class="contact-category"><a href="<?php echo $contactLink; ?>">
				<?php echo $this->escape($this->item->category_title); ?></a>
			</span>
		</h3>
	<?php endif; ?>

	<?php echo $this->item->event->afterDisplayTitle; ?>

	<?php if ($tparams->get('show_contact_list') && count($this->contacts) > 1) : ?>
		<form action="#" method="get" name="selectForm" id="selectForm">
			<label for="select_contact"><?php echo Text::_('COM_CONTACT_SELECT_CONTACT'); ?></label>
			<?php echo HTMLHelper::_('select.genericlist', $this->contacts, 'select_contact', 'class="form-select" onchange="document.location.href = this.value"', 'link', 'name', $this->item->link); ?>
		</form>
	<?php endif; ?>

	<?php if ($tparams->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
		<?php $this->item->tagLayout = new FileLayout('joomla.content.tags'); ?>
		<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
	<?php endif; ?>

	<?php echo $this->item->event->beforeDisplayContent; ?>

	<?php
		if(version_compare(JVERSION, '4', 'ge')){
			$presentation_style = 'plain';
		} else {
			$presentation_style = $tparams->get('presentation_style');
		} 
	?>
	
	<?php $accordionStarted = false; ?>
	<?php $tabSetStarted = false; ?>


	<!-- SLIDERS STYLE -->
	<?php if ($presentation_style === 'sliders') : ?>
		<?php if ($this->params->get('show_info', 1)) : ?>

			<?php echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'basic-details')); ?>
			<?php $accordionStarted = true; ?>
			<?php echo HTMLHelper::_('bootstrap.addSlide', 'slide-contact', Text::_('COM_CONTACT_DETAILS'), 'basic-details'); ?>

			<?php if ($this->item->image && $tparams->get('show_image')) : ?>
			<div class="thumbnail contact-thumb mb-4">
				<?php echo HTMLHelper::_('image', $this->item->image, htmlspecialchars($this->item->name,  ENT_QUOTES, 'UTF-8'), array('itemprop' => 'image')); ?>
			</div>
			<?php endif; ?>

			<?php if ($this->item->con_position && $tparams->get('show_position')) : ?>
				<dl class="contact-position dl-horizontal">
					<dt><?php echo Text::_('COM_CONTACT_POSITION'); ?>:</dt>
					<dd itemprop="jobTitle">
						<?php echo $this->item->con_position; ?>
					</dd>
				</dl>
			<?php endif; ?>

			<?php echo $this->loadTemplate('address'); ?>

			<?php if ($tparams->get('allow_vcard')) : ?>
				<?php echo Text::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS'); ?>
				<a href="<?php echo Route::_('index.php?option=com_contact&amp;view=contact&amp;id=' . $this->item->id . '&amp;format=vcf'); ?>">
				<?php echo Text::_('COM_CONTACT_VCARD'); ?></a>
			<?php endif; ?>

			<?php echo HTMLHelper::_('bootstrap.endSlide'); ?>

		<?php endif; ?>
		<!-- // Show info -->

		<!-- Show email -->
		<?php if ($tparams->get('show_email_form') && ($this->item->email_to || $this->item->user_id)) : ?>
			<?php if (!$accordionStarted) {
				echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'display-form'));
				$accordionStarted = true;
			} ?>
			<?php echo HTMLHelper::_('bootstrap.addSlide', 'slide-contact', Text::_('COM_CONTACT_EMAIL_FORM'), 'display-form'); ?>

			<?php echo $this->loadTemplate('form'); ?>
			<?php echo HTMLHelper::_('bootstrap.endSlide'); ?>
		<?php endif; ?>
		<!-- // Show email -->

		<!-- Show links -->
		<?php if ($tparams->get('show_links')) : ?>
			<?php if (!$accordionStarted) : ?>
				<?php echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'display-links')); ?>
				<?php $accordionStarted = true; ?>
				<?php echo $this->loadTemplate('links'); ?>
			<?php endif; ?>
		<?php endif; ?>
		<!-- // Show links -->

		<!-- Show articles -->
		<?php if ($tparams->get('show_articles') && $this->item->user_id && $this->item->articles) : ?>
			<?php if (!$accordionStarted)
			{
				echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'display-articles'));
				$accordionStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addSlide', 'slide-contact', Text::_('JGLOBAL_ARTICLES'), 'display-articles'); ?>
			<?php echo $this->loadTemplate('articles'); ?>
			<?php echo HTMLHelper::_('bootstrap.endSlide'); ?>
		<?php endif; ?>
		<!-- // Show articles -->

		<!-- Show profile -->
		<?php if ($tparams->get('show_profile') && $this->item->user_id && JPluginHelper::isEnabled('user', 'profile')) : ?>
			<?php if (!$accordionStarted)
			{
				echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'display-profile'));
				$accordionStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addSlide', 'slide-contact', Text::_('COM_CONTACT_PROFILE'), 'display-profile'); ?>
			<?php echo $this->loadTemplate('profile'); ?>
			<?php echo HTMLHelper::_('bootstrap.endSlide'); ?>
		<?php endif; ?>
		<!-- // Show profile -->

		<!-- Custom field -->
		<?php if ($tparams->get('show_user_custom_fields') && $this->contactUser) : ?>
			<?php echo $this->loadTemplate('user_custom_fields'); ?>
		<?php endif; ?>
		<!-- // Custom field -->

		<!-- Misc -->
		<?php if ($this->item->misc && $tparams->get('show_misc')) : ?>
			<?php if (!$accordionStarted)
			{
				echo HTMLHelper::_('bootstrap.startAccordion', 'slide-contact', array('active' => 'display-misc'));
				$accordionStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addSlide', 'slide-contact', Text::_('COM_CONTACT_OTHER_INFORMATION'), 'display-misc'); ?>
			<div class="contact-miscinfo">
				<dl class="dl-horizontal">
					<dt>
						<span class="<?php echo $tparams->get('marker_class'); ?>">
						<?php echo $tparams->get('marker_misc'); ?>
						</span>
					</dt>
					<dd>
						<span class="contact-misc">
							<?php echo $this->item->misc; ?>
						</span>
					</dd>
				</dl>
			</div>
			<?php echo HTMLHelper::_('bootstrap.endSlide'); ?>
		<?php endif; ?>
		<!-- // Misc -->

		<?php if ($accordionStarted) : ?>
			<?php echo HTMLHelper::_('bootstrap.endAccordion'); ?>
		<?php endif; ?>

	<?php endif; ?>
	<!-- // SLIDERS STYLE -->

	<!-- TABS STYLE -->
	<?php if ($presentation_style === 'tabs') : ?>
		<?php if ($this->params->get('show_info', 1)) : ?>
			<?php echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'basic-details')); ?>
			<?php $tabSetStarted = true; ?>
			<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'basic-details', Text::_('COM_CONTACT_DETAILS')); ?>

			<?php if ($this->item->image && $tparams->get('show_image')) : ?>
			<div class="thumbnail pull-right">
				<?php echo HTMLHelper::_('image', $this->item->image, htmlspecialchars($this->item->name,  ENT_QUOTES, 'UTF-8'), array('itemprop' => 'image')); ?>
			</div>
			<?php endif; ?>

			<?php if ($this->item->con_position && $tparams->get('show_position')) : ?>
				<dl class="contact-position dl-horizontal">
					<dt><?php echo Text::_('COM_CONTACT_POSITION'); ?>:</dt>
					<dd itemprop="jobTitle">
						<?php echo $this->item->con_position; ?>
					</dd>
				</dl>
			<?php endif; ?>

			<?php echo $this->loadTemplate('address'); ?>

			<?php if ($tparams->get('allow_vcard')) : ?>
				<?php echo Text::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS'); ?>
				<a href="<?php echo Route::_('index.php?option=com_contact&amp;view=contact&amp;id=' . $this->item->id . '&amp;format=vcf'); ?>">
				<?php echo Text::_('COM_CONTACT_VCARD'); ?></a>
			<?php endif; ?>

			<?php echo HTMLHelper::_('bootstrap.endTab'); ?>
		<?php endif; ?>
			<!-- // Show info -->

		<!-- Show email -->
		<?php if ($tparams->get('show_email_form') && ($this->item->email_to || $this->item->user_id)) : ?>
			<?php if (!$tabSetStarted)
			{
				echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'display-form'));
				$tabSetStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'display-form', Text::_('COM_CONTACT_EMAIL_FORM')); ?>

			<?php echo $this->loadTemplate('form'); ?>

			<?php echo HTMLHelper::_('bootstrap.endTab'); ?>
		<?php endif; ?>
		<!-- // Show email -->

		<!-- Show links -->
		<?php if ($tparams->get('show_links')) : ?>
			<?php if (!$tabSetStarted) : ?>
				<?php echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'display-links')); ?>
				<?php $tabSetStarted = true; ?>
			<?php endif; ?>
			<?php echo $this->loadTemplate('links'); ?>
		<?php endif; ?>
		<!-- // Show links -->

		<!-- Show articles -->
		<?php if ($tparams->get('show_articles') && $this->item->user_id && $this->item->articles) : ?>
			<?php if (!$tabSetStarted)
			{
				echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'display-articles'));
				$tabSetStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'display-articles', Text::_('JGLOBAL_ARTICLES')); ?>
			<?php echo $this->loadTemplate('articles'); ?>
			<?php echo HTMLHelper::_('bootstrap.endTab'); ?>
		<?php endif; ?>
		<!-- // Show articles -->

		<!-- Show profile -->
		<?php if ($tparams->get('show_profile') && $this->item->user_id && JPluginHelper::isEnabled('user', 'profile')) : ?>
			<?php if (!$tabSetStarted)
			{
				echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'display-profile'));
				$tabSetStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'display-profile', Text::_('COM_CONTACT_PROFILE')); ?>
			<?php echo $this->loadTemplate('profile'); ?>
			<?php echo HTMLHelper::_('bootstrap.endTab'); ?>
		<?php endif; ?>
		<!-- // Show profile -->

		<!-- Custom field -->
		<?php if ($tparams->get('show_user_custom_fields') && $this->contactUser) : ?>
			<?php echo $this->loadTemplate('user_custom_fields'); ?>
		<?php endif; ?>
		<!-- // Custom field -->

		<!-- Misc -->
		<?php if ($this->item->misc && $tparams->get('show_misc')) : ?>
			<?php if (!$tabSetStarted)
			{
				echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'display-misc'));
				$tabSetStarted = true;
			}
			?>
			<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'display-misc', Text::_('COM_CONTACT_OTHER_INFORMATION')); ?>
			<div class="contact-miscinfo">
				<dl class="dl-horizontal">
					<dt>
						<span class="<?php echo $tparams->get('marker_class'); ?>">
						<?php echo $tparams->get('marker_misc'); ?>
						</span>
					</dt>
					<dd>
						<span class="contact-misc">
							<?php echo $this->item->misc; ?>
						</span>
					</dd>
				</dl>
			</div>
			<?php echo HTMLHelper::_('bootstrap.endTab'); ?>
		<?php endif; ?>
		<!-- // Misc -->

		<?php if ($tabSetStarted) : ?>
			<?php echo HTMLHelper::_('bootstrap.endTabSet'); ?>
		<?php endif; ?>

	<?php endif; ?>
	<!-- // TABS STYLE -->

	<!-- PLAIN STYLE -->
	<?php if ($presentation_style === 'plain') : ?>
	<div class="plain-style">
		<div class="row">
			<div class="col-12 col-md-7">
				<!-- // Show email -->
				<?php if ($tparams->get('show_email_form') && ($this->item->email_to || $this->item->user_id)) : ?>
					<?php echo '<h3>' . Text::_('COM_CONTACT_EMAIL_FORM') . '</h3>'; ?>
					<?php echo $this->loadTemplate('form'); ?>
				<?php endif; ?>
				<!-- // Show email -->
			</div>

			<div class="col-12 col-md-5">
				<?php if ($this->params->get('show_info', 1)) : ?>
					<?php echo '<h3>' . Text::_('COM_CONTACT_DETAILS') . '</h3>'; ?>

					<?php if ($this->item->image && $tparams->get('show_image')) : ?>
					<div class="contact-image">
						<?php echo HTMLHelper::_('image', $this->item->image, htmlspecialchars($this->item->name,  ENT_QUOTES, 'UTF-8'), array('itemprop' => 'image')); ?>
					</div>
					<?php endif; ?>

					<?php if ($this->item->con_position && $tparams->get('show_position')) : ?>
						<div class="contact-position">
							<dl class="contact-position dl-horizontal">
								<dt><?php echo Text::_('COM_CONTACT_POSITION'); ?>:</dt>
								<dd itemprop="jobTitle">
									<?php echo $this->item->con_position; ?>
								</dd>
							</dl>
						</div>
					<?php endif; ?>

					<?php echo $this->loadTemplate('address'); ?>

					<?php if ($tparams->get('allow_vcard')) : ?>
						<?php echo Text::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS'); ?>
						<a href="<?php echo Route::_('index.php?option=com_contact&amp;view=contact&amp;id=' . $this->item->id . '&amp;format=vcf'); ?>">
						<?php echo Text::_('COM_CONTACT_VCARD'); ?></a>
					<?php endif; ?>
				<?php endif; ?>
				<!-- // Show info -->

				<!-- Show links -->
				<?php if ($tparams->get('show_links')) : ?>
					<div class="contact-link">
						<?php echo $this->loadTemplate('links'); ?>
					</div>
				<?php endif; ?>
				<!-- // Show links -->

				<!-- Show articles -->
				<?php if ($tparams->get('show_articles') && $this->item->user_id && $this->item->articles) : ?>
					<div class="contact-articles">
						<?php echo '<h3>' . Text::_('JGLOBAL_ARTICLES') . '</h3>'; ?>
						<?php echo $this->loadTemplate('articles'); ?>
					</div>
				<?php endif; ?>
				<!-- // Show articles -->

				<!-- Show profile -->
				<?php if ($tparams->get('show_profile') && $this->item->user_id && JPluginHelper::isEnabled('user', 'profile')) : ?>
					<div class="contact-profile">
						<?php echo '<h3>' . Text::_('COM_CONTACT_PROFILE') . '</h3>'; ?>
						<?php echo $this->loadTemplate('profile'); ?>
					</div>
				<?php endif; ?>
				<!-- // Show profile -->

				<!-- Custom field -->
				<?php if ($tparams->get('show_user_custom_fields') && $this->contactUser) : ?>
					<div class="contact-custom-field">
						<?php echo $this->loadTemplate('user_custom_fields'); ?>
					</div>
				<?php endif; ?>
				<!-- // Custom field -->

				<!-- Misc -->
				<?php if ($this->item->misc && $tparams->get('show_misc')) : ?>
					<div class="contact-miscinfo">
						<?php echo '<h3>' . Text::_('COM_CONTACT_OTHER_INFORMATION') . '</h3>'; ?>
						<span class="<?php echo $tparams->get('marker_class'); ?>">
							<?php echo $tparams->get('marker_misc'); ?>
						</span>

						<div class="contact-misc">
							<?php echo $this->item->misc; ?>
						</div>
				</div>
				<?php endif; ?>
				<!-- // Misc -->
			</div>
		</div>
	</div>
	<?php endif; ?>
	<!-- // PLAIN STYLE -->

	<?php echo $this->item->event->afterDisplayContent; ?>
</div>