Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/contact.zip
Назад
PK ��!]�q��1 1 default_profile.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; ?> <?php if (JPluginHelper::isEnabled('user', 'profile')) : $fields = $this->item->profile->getFieldset('profile'); ?> <div class="contact-profile" id="users-profile-custom"> <dl class="dl-horizontal"> <?php foreach ($fields as $profile) : if ($profile->value) : echo '<dt>'.$profile->label.'</dt>'; $profile->text = htmlspecialchars($profile->value, ENT_COMPAT, 'UTF-8'); switch ($profile->id) : case 'profile_website': $v_http = substr($profile->value, 0, 4); if ($v_http === 'http') : echo '<dd><a href="' . $profile->text . '">' . JStringPunycode::urlToUTF8($profile->text) . '</a></dd>'; else : echo '<dd><a href="http://' . $profile->text . '">' . JStringPunycode::urlToUTF8($profile->text) . '</a></dd>'; endif; break; case 'profile_dob': echo '<dd>' . JHtml::_('date', $profile->text, JText::_('DATE_FORMAT_LC4'), false) . '</dd>'; break; default: echo '<dd>'.$profile->text.'</dd>'; break; endswitch; endif; endforeach; ?> </dl> </div> <?php endif; ?> PK ��!]��E default_form.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::_('behavior.keepalive'); JHtml::_('behavior.formvalidation'); JHtml::_('behavior.tooltip'); if (isset($this->error)) : ?> <div class="contact-error"> <?php echo $this->error; ?> </div> <?php endif; ?> <div class="contact-form"> <form id="contact-form" action="<?php echo JRoute::_('index.php'); ?>" method="post" class="form-validate form-horizontal"> <fieldset> <legend><?php echo JText::_('COM_CONTACT_FORM_LABEL'); ?></legend> <div class="control-group"> <div class="control-label"><?php echo $this->form->getLabel('contact_name'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_name'); ?></div> </div> <div class="control-group"> <div class="control-label"><?php echo $this->form->getLabel('contact_email'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_email'); ?></div> </div> <div class="control-group"> <div class="control-label"><?php echo $this->form->getLabel('contact_subject'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_subject'); ?></div> </div> <div class="control-group"> <div class="control-label"><?php echo $this->form->getLabel('contact_message'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_message'); ?></div> </div> <?php if ($this->params->get('show_email_copy')) { ?> <div class="control-group"> <div class="control-label email_copy"><?php echo $this->form->getLabel('contact_email_copy'); ?></div> <div class="controls"><?php echo $this->form->getInput('contact_email_copy'); ?></div> </div> <?php } ?> <?php //Dynamically load any additional fields from plugins. ?> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <?php if ($fieldset->name != 'contact'):?> <?php $fields = $this->form->getFieldset($fieldset->name);?> <?php foreach ($fields as $field) : ?> <div class="control-group"> <?php if ($field->hidden) : ?> <div class="controls"> <?php echo $field->input;?> </div> <?php else:?> <div class="control-label"> <?php echo $field->label; ?> <?php if (!$field->required && $field->type != "Spacer") : ?> <span class="optional"><?php echo JText::_('COM_CONTACT_OPTIONAL');?></span> <?php endif; ?> </div> <div class="controls"><?php echo $field->input;?></div> <?php endif;?> </div> <?php endforeach;?> <?php endif ?> <?php endforeach;?> <div class="form-actions"><button class="btn btn-primary validate" type="submit"><?php echo JText::_('COM_CONTACT_CONTACT_SEND'); ?></button> <input type="hidden" name="option" value="com_contact" /> <input type="hidden" name="task" value="contact.submit" /> <input type="hidden" name="return" value="<?php echo $this->return_page;?>" /> <input type="hidden" name="id" value="<?php echo $this->contact->slug; ?>" /> <?php echo JHtml::_('form.token'); ?> </div> </fieldset> </form> </div> PK ��!] �� default_links.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; if ($this->params->get('presentation_style')=='sliders'):?> <div class="accordion-group"> <div class="accordion-heading"> <a class="accordion-toggle" data-toggle="collapse" data-parent="#slide-contact" href="#display-links"> <?php echo JText::_('COM_CONTACT_LINKS');?> </a> </div> <div id="display-links" class="accordion-body collapse"> <div class="accordion-inner"> <?php endif; ?> <?php if ($this->params->get('presentation_style') == 'tabs') : ?> <div id="display-links" class="tab-pane"> <?php endif; ?> <?php if ($this->params->get('presentation_style')=='plain'):?> <?php echo '<h3>'. JText::_('COM_CONTACT_LINKS').'</h3>'; ?> <?php endif; ?> <div class="contact-links"> <ul class="nav nav-tabs nav-stacked"> <?php foreach (range('a', 'e') as $char) :// letters 'a' to 'e' $link = $this->contact->params->get('link'.$char); $label = $this->contact->params->get('link'.$char.'_name'); if (!$link) : continue; endif; // Add 'http://' if not present $link = (0 === strpos($link, 'http')) ? $link : 'http://'.$link; // If no label is present, take the link $label = ($label) ? $label : $link; ?> <li> <a href="<?php echo $link; ?>"> <?php echo $label; ?> </a> </li> <?php endforeach; ?> </ul> </div> <?php if ($this->params->get('presentation_style')=='sliders'):?> </div> </div> </div> <?php endif; ?> <?php if ($this->params->get('presentation_style') == 'tabs') : ?> </div> <?php endif; ?> PK ��!]�mbܳ � default_address.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * marker_class: Class based on the selection of text, none, or icons * jicon-text, jicon-none, jicon-icon */ ?> <dl class="contact-address dl-horizontal" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <?php if (($this->params->get('address_check') > 0) && ($this->contact->address || $this->contact->suburb || $this->contact->state || $this->contact->country || $this->contact->postcode)) : ?> <?php if ($this->params->get('address_check') > 0) : ?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" > <?php echo $this->params->get('marker_address'); ?> </span> </dt> <?php endif; ?> <?php if ($this->contact->address && $this->params->get('show_street_address')) : ?> <dd> <span class="contact-street" itemprop="streetAddress"> <?php echo $this->contact->address .'<br/>'; ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->suburb && $this->params->get('show_suburb')) : ?> <dd> <span class="contact-suburb" itemprop="addressLocality"> <?php echo $this->contact->suburb .'<br/>'; ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->state && $this->params->get('show_state')) : ?> <dd> <span class="contact-state" itemprop="addressRegion"> <?php echo $this->contact->state . '<br/>'; ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->postcode && $this->params->get('show_postcode')) : ?> <dd> <span class="contact-postcode" itemprop="postalCode"> <?php echo $this->contact->postcode .'<br/>'; ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->country && $this->params->get('show_country')) : ?> <dd> <span class="contact-country" itemprop="addressCountry"> <?php echo $this->contact->country .'<br/>'; ?> </span> </dd> <?php endif; ?> <?php endif; ?> <?php if ($this->contact->email_to && $this->params->get('show_email')) : ?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" itemprop="email"> <?php echo nl2br($this->params->get('marker_email')); ?> </span> </dt> <dd> <span class="contact-emailto"> <?php echo $this->contact->email_to; ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->telephone && $this->params->get('show_telephone')) : ?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" > <?php echo $this->params->get('marker_telephone'); ?> </span> </dt> <dd> <span class="contact-telephone" itemprop="telephone"> <?php echo nl2br($this->contact->telephone); ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->fax && $this->params->get('show_fax')) : ?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" > <?php echo $this->params->get('marker_fax'); ?> </span> </dt> <dd> <span class="contact-fax" itemprop="faxNumber"> <?php echo nl2br($this->contact->fax); ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->mobile && $this->params->get('show_mobile')) :?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" > <?php echo $this->params->get('marker_mobile'); ?> </span> </dt> <dd> <span class="contact-mobile" itemprop="telephone"> <?php echo nl2br($this->contact->mobile); ?> </span> </dd> <?php endif; ?> <?php if ($this->contact->webpage && $this->params->get('show_webpage')) : ?> <dt> <span class="<?php echo $this->params->get('marker_class'); ?>" > </span> </dt> <dd> <span class="contact-webpage"> <a href="<?php echo $this->contact->webpage; ?>" target="_blank" rel="noopener noreferrer" itemprop="url"> <?php echo JStringPunycode::urlToUTF8($this->contact->webpage); ?></a> </span> </dd> <?php endif; ?> </dl> PK ��!]�V� index.htmlnu &1i� <!DOCTYPE html><title></title> PK ��!]!���. . default_articles.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php'); ?> <?php if ($this->params->get('show_articles')) : ?> <div class="contact-articles"> <ul class="nav nav-tabs nav-stacked"> <?php foreach ($this->item->articles as $article) : ?> <li> <?php echo JHtml::_('link', JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)), htmlspecialchars($article->title, ENT_COMPAT, 'UTF-8')); ?> </li> <?php endforeach; ?> </ul> </div> <?php endif; ?> PK ��!]u�H��'