Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/profile.zip
Назад
PK �|!]_�s s fields/dob.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Layout * * @copyright (C) 2014 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * $text string infotext to be displayed */ extract($displayData); // Closing the opening .control-group and .control-label div so we can add our info text on own line ?> </div></div> <div class="controls"><?php echo $text; ?></div> <?php // Creating new .control-group and .control-label for the actual field ?> <div class="control-group"><div class="control-label"> PK v�!]Z]� � default_core.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_users * * @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; ?> <fieldset id="users-profile-core"> <legend> <?php echo JText::_('COM_USERS_PROFILE_CORE_LEGEND'); ?> </legend> <dl class="dl-horizontal"> <dt> <?php echo JText::_('COM_USERS_PROFILE_NAME_LABEL'); ?> </dt> <dd> <?php echo $this->data->name; ?> </dd> <dt> <?php echo JText::_('COM_USERS_PROFILE_USERNAME_LABEL'); ?> </dt> <dd> <?php echo htmlspecialchars($this->data->username, ENT_COMPAT, 'UTF-8'); ?> </dd> <dt> <?php echo JText::_('COM_USERS_PROFILE_REGISTERED_DATE_LABEL'); ?> </dt> <dd> <?php echo JHtml::_('date', $this->data->registerDate); ?> </dd> <dt> <?php echo JText::_('COM_USERS_PROFILE_LAST_VISITED_DATE_LABEL'); ?> </dt> <?php if ($this->data->lastvisitDate != $this->db->getNullDate()) : ?> <dd> <?php echo JHtml::_('date', $this->data->lastvisitDate); ?> </dd> <?php else: ?> <dd> <?php echo JText::_('COM_USERS_PROFILE_NEVER_VISITED'); ?> </dd> <?php endif; ?> </dl> </fieldset> PK v�!]��V�u u default.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_users * * @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(version_compare(JVERSION, '3.0', 'ge')){ JHtml::_('bootstrap.tooltip'); } else { JHtml::_('behavior.tooltip'); } ?> <div class="profile <?php echo $this->pageclass_sfx?>"> <?php if (JFactory::getUser()->id == $this->data->id) : ?> <ul class="btn-toolbar pull-right"> <li class="btn-group"> <a class="btn" href="<?php echo JRoute::_('index.php?option=com_users&task=profile.edit&user_id='.(int) $this->data->id);?>"> <span class="icon-user"></span> <?php echo JText::_('COM_USERS_EDIT_PROFILE'); ?> </a> </li> </ul> <?php endif; ?> <?php if ($this->params->get('show_page_heading')) : ?> <div class="page-header"> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> </div> <?php endif; ?> <?php echo $this->loadTemplate('core'); ?> <?php echo $this->loadTemplate('params'); ?> <?php echo $this->loadTemplate('custom'); ?> </div> PK v�!]�ަ�T T default_custom.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_users * * @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; JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); JHtml::register('users.spacer', array('JHtmlUsers', 'spacer')); $fieldsets = $this->form->getFieldsets(); if (isset($fieldsets['core'])) { unset($fieldsets['core']); } if (isset($fieldsets['params'])) { unset($fieldsets['params']); } $tmp = isset($this->data->jcfields) ? $this->data->jcfields : array(); $customFields = array(); foreach ($tmp as $customField) { $customFields[$customField->name] = $customField; } ?> <?php foreach ($fieldsets as $group => $fieldset) : ?> <?php $fields = $this->form->getFieldset($group); ?> <?php if (count($fields)) : ?> <fieldset id="users-profile-custom-<?php echo $group; ?>" class="users-profile-custom-<?php echo $group; ?>"> <?php if (isset($fieldset->label) && ($legend = trim(JText::_($fieldset->label))) !== '') : ?> <legend><?php echo $legend; ?></legend> <?php endif; ?> <?php if (isset($fieldset->description) && trim($fieldset->description)) : ?> <p><?php echo $this->escape(JText::_($fieldset->description)); ?></p> <?php endif; ?> <dl class="dl-horizontal"> <?php foreach ($fields as $field) : ?> <?php if (!$field->hidden && $field->type !== 'Spacer') : ?> <dt><?php echo $field->title; ?></dt> <dd> <?php if (key_exists($field->fieldname, $customFields)) : ?> <?php echo $customFields[$field->fieldname]->value ?: JText::_('COM_USERS_PROFILE_VALUE_NOT_FOUND'); ?> <?php elseif (JHtml::isRegistered('users.' . $field->id)) : ?> <?php echo JHtml::_('users.' . $field->id, $field->value); ?> <?php elseif (JHtml::isRegistered('users.' . $field->fieldname)) : ?> <?php echo JHtml::_('users.' . $field->fieldname, $field->value); ?> <?php elseif (JHtml::isRegistered('users.' . $field->type)) : ?> <?php echo JHtml::_('users.' . $field->type, $field->value); ?> <?php else : ?> <?php echo JHtml::_('users.value', $field->value); ?> <?php endif; ?> </dd> <?php endif; ?> <?php endforeach; ?> </dl> </fieldset> <?php endif; ?> <?php endforeach; ?> PK v�!]�F��� � default_params.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage com_users * * @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; JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); ?> <?php $fields = $this->form->getFieldset('params'); ?> <?php if (count($fields)) : ?> <fieldset id="users-profile-custom"> <legend><?php echo JText::_('COM_USERS_SETTINGS_FIELDSET_LABEL'); ?></legend> <dl class="dl-horizontal"> <?php foreach ($fields as $field): if (!$field->hidden) :?> <dt><?php echo $field->title; ?></dt> <dd> <?php if (JHtml::isRegistered('users.'.$field->id)):?> <?php echo JHtml::_('users.'.$field->id, $field->value);?> <?php elseif (JHtml::isRegistered('users.'.$field->fieldname)):?> <?php echo JHtml::_('users.'.$field->fieldname, $field->value);?> <?php elseif (JHtml::isRegistered('users.'.$field->type)):?> <?php echo JHtml::_('users.'.$field->type, $field->value);?> <?php else:?> <?php echo JHtml::_('users.value', $field->value);?> <?php endif;?> </dd> <?php endif;?> <?php endforeach;?> </dl> </fieldset> <?php endif;?> PK v�!])�̗� � edit.phpnu &1i� <?php /** * @package Joomla.Administrator * @subpackage Template.hathor * * @copyright (C) 2010 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); JHtml::_('behavior.formvalidator'); // Get the form fieldsets. $fieldsets = $this->form->getFieldsets(); JFactory::getDocument()->addScriptDeclaration(" Joomla.submitbutton = function(task) { if (task == 'profile.cancel' || document.formvalidator.isValid(document.getElementById('profile-form'))) { Joomla.submitform(task, document.getElementById('profile-form')); } } "); ?> <form action="<?php echo JRoute::_('index.php?option=com_admin&view=profile&layout=edit&id='.$this->item->id); ?>" method="post" name="adminForm" id="profile-form" class="form-validate" enctype="multipart/form-data"> <div class="col main-section"> <fieldset class="adminform"> <legend><?php echo JText::_('COM_ADMIN_USER_ACCOUNT_DETAILS'); ?></legend> <ul class="adminformlist"> <?php foreach ($this->form->getFieldset('user_details') as $field) : ?> <li><?php echo $field->label; ?> <?php echo $field->input; ?></li> <?php endforeach; ?> </ul> </fieldset> </div> <div class="col options-section"> <?php echo JHtml::_('sliders.start'); foreach ($fieldsets as $fieldset) : if ($fieldset->name == 'user_details') : continue; endif; echo JHtml::_('sliders.panel', JText::_($fieldset->label), $fieldset->name); ?> <fieldset class="panelform"> <legend class="element-invisible"><?php echo JText::_($fieldset->label); ?></legend> <ul class="adminformlist"> <?php foreach ($this->form->getFieldset($fieldset->name) as $field) : ?> <?php if ($field->hidden) : ?> <?php echo $field->input; ?> <?php else: ?> <li><?php echo $field->label; ?> <?php echo $field->input; ?></li> <?php endif; ?> <?php endforeach; ?> </ul> </fieldset> <?php endforeach; ?> <?php echo JHtml::_('sliders.end'); ?> <input type="hidden" name="task" value="" /> <?php echo JHtml::_('form.token'); ?> </div> </form> PK v�!]�V� index.htmlnu &1i� <!DOCTYPE html><title></title> PK �|!]_�s s fields/dob.phpnu &1i� PK v�!]Z]� � � default_core.phpnu &1i� PK v�!]��V�u u � default.phpnu &1i� PK v�!]�ަ�T T } default_custom.phpnu &1i� PK v�!]�F��� � default_params.phpnu &1i� PK v�!])�̗� � $ edit.phpnu &1i� PK v�!]�V� $ index.htmlnu &1i� PK l$
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка