Файловый менеджер - Редактировать - /var/www/html/com_users.zip
Ðазад
PK ! �s2� � registration/complete.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); ?> <div class="registration-complete<?php echo $this->pageclass_sfx; ?>"> <?php if ($this->params->get('show_page_heading')) : ?> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> <?php endif; ?> </div> PK ! �9l�� � registration/default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); ?> <div class="registration<?php echo $this->pageclass_sfx; ?>"> <div class="row justify-content-center"> <div class="col-lg-9 col-xl-6"> <?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; ?> <form id="member-registration" action="<?php echo Route::_('index.php?option=com_users&task=registration.register'); ?>" method="post" class="form-validate" enctype="multipart/form-data"> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <?php $fields = $this->form->getFieldset($fieldset->name); ?> <?php if (count($fields)) : ?> <fieldset> <?php if (isset($fieldset->label)) : ?> <legend><?php echo Text::_($fieldset->label); ?></legend> <?php endif; ?> <div class="row"> <?php foreach ($fields as $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <?php if ($field->hidden) : ?> <?php echo $field->input; ?> <?php else : ?> <?php $fieldName = $field->getAttribute('name'); ?> <?php if(($fieldName == 'password1') || ($fieldName == 'password2') || ($fieldName == 'email1') || ($fieldName == 'email2')) : ?> <div class="col-lg-6" <?php echo $attribs; ?>> <?php else: ?> <div class="col-xl-12" <?php echo $attribs; ?>> <?php endif; ?> <div class="mb-3"> <?php echo $field->label; ?> <?php if (!$field->required && $field->type !== 'Spacer') : ?> <span class="optional"><?php echo Text::_('COM_USERS_OPTIONAL'); ?></span> <?php endif; ?> <?php echo $field->input; ?> </div> </div> <?php endif; ?> <?php endforeach; ?> </div> </fieldset> <?php endif; ?> <?php endforeach; ?> <div> <button type="submit" class="btn btn-primary validate"><?php echo Text::_('JREGISTER'); ?></button> <a class="btn btn-secondary" href="<?php echo Route::_(''); ?>" title="<?php echo Text::_('JCANCEL'); ?>"><?php echo Text::_('JCANCEL'); ?></a> <input type="hidden" name="option" value="com_users"> <input type="hidden" name="task" value="registration.register"> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> </div> </div> PK ! �E��M M login/default_logout.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Helper; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; ?> <div class="logout<?php echo $this->pageclass_sfx; ?>"> <?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 if (($this->params->get('logoutdescription_show') == 1 && str_replace(' ', '', Helper::CheckNull($this->params->get('logout_description'))) != '')|| $this->params->get('logout_image') != '') : ?> <div class="logout-description"> <?php endif; ?> <?php if ($this->params->get('logoutdescription_show') == 1) : ?> <?php echo $this->params->get('logout_description'); ?> <?php endif; ?> <?php if ($this->params->get('logout_image') != '') : ?> <img src="<?php echo $this->escape($this->params->get('logout_image')); ?>" class="thumbnail float-end logout-image" alt="<?php echo Text::_('COM_USER_LOGOUT_IMAGE_ALT'); ?>"> <?php endif; ?> <?php if (($this->params->get('logoutdescription_show') == 1 && str_replace(' ', '', Helper::CheckNull($this->params->get('logout_description'))) != '')|| $this->params->get('logout_image') != '') : ?> </div> <?php endif; ?> <form action="<?php echo Route::_('index.php?option=com_users&task=user.logout'); ?>" method="post" class="form-horizontal well"> <div class="control-group"> <div class="controls"> <button type="submit" class="btn btn-primary"><span class="icon-arrow-left icon-white"></span> <?php echo Text::_('JLOGOUT'); ?></button> </div> </div> <?php if ($this->params->get('logout_redirect_url')) : ?> <input type="hidden" name="return" value="<?php echo base64_encode(Helper::CheckNull($this->params->get('logout_redirect_url', $this->form->getValue('return')))); ?>"> <?php else : ?> <input type="hidden" name="return" value="<?php echo base64_encode(Helper::CheckNull($this->params->get('logout_redirect_menuitem', $this->form->getValue('return')))); ?>"> <?php endif; ?> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> PK ! ��V� login/default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); $cookieLogin = $this->user->get('cookieLogin'); if (!empty($cookieLogin) || $this->user->get('guest')) { // The user is not logged in or needs to provide a password. echo $this->loadTemplate('login'); } else { // The user is already logged in. echo $this->loadTemplate('logout'); } PK ! BAA�^ ^ login/default_login.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined('_JEXEC') or die; use HelixUltimate\Framework\Platform\Helper; use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\PluginHelper; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); $usersConfig = ComponentHelper::getParams('com_users'); ?> <div class="login<?php echo $this->pageclass_sfx; ?>"> <div class="row justify-content-center"> <div class="col-lg-4"> <?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 if (($this->params->get('logindescription_show') == 1 && str_replace(' ', '', Helper::CheckNull($this->params->get('login_description'))) != '') || $this->params->get('login_image') != '') : ?> <div class="login-description"> <?php endif; ?> <?php if ($this->params->get('logindescription_show') == 1) : ?> <?php echo $this->params->get('login_description'); ?> <?php endif; ?> <?php if ($this->params->get('login_image') != '') : ?> <img src="<?php echo $this->escape($this->params->get('login_image')); ?>" class="login-image" alt="<?php echo Text::_('COM_USERS_LOGIN_IMAGE_ALT'); ?>"> <?php endif; ?> <?php if (($this->params->get('logindescription_show') == 1 && str_replace(' ', '', Helper::CheckNull($this->params->get('login_description'))) != '') || $this->params->get('login_image') != '') : ?> </div> <?php endif; ?> <form action="<?php echo Route::_('index.php?option=com_users&task=user.login'); ?>" method="post" class="form-validate"> <?php foreach ($this->form->getFieldset('credentials') as $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <?php if (!$field->hidden) : ?> <div class="mb-3" <?php echo $attribs; ?>> <?php echo $field->label; ?> <?php echo $field->input; ?> </div> <?php endif; ?> <?php endforeach; ?> <?php if ($this->tfa) : ?> <div class="mb-3"> <?php echo $this->form->getField('secretkey')->label; ?> <?php echo $this->form->getField('secretkey')->input; ?> </div> <?php endif; ?> <?php if (PluginHelper::isEnabled('system', 'remember')) : ?> <div class="form-check mb-3"> <label class="form-check-label"> <input class="form-check-input" type="checkbox" name="remember" id="remember" class="inputbox" value="yes"> <?php echo Text::_('COM_USERS_LOGIN_REMEMBER_ME') ?> </label> </div> <?php endif; ?> <div class="mb-3"> <button type="submit" class="btn btn-primary btn-lg w-100"> <?php echo Text::_('JLOGIN'); ?> </button> </div> <?php $return = $this->form->getValue('return', '', $this->params->get('login_redirect_url', $this->params->get('login_redirect_menuitem'))); ?> <input type="hidden" name="return" value="<?php echo base64_encode(Helper::CheckNull($return)); ?>"> <?php echo HTMLHelper::_('form.token'); ?> </form> <div> <div class="list-group"> <a class="list-group-item" href="<?php echo Route::_('index.php?option=com_users&view=reset'); ?>"> <?php echo Text::_('COM_USERS_LOGIN_RESET'); ?> </a> <a class="list-group-item" href="<?php echo Route::_('index.php?option=com_users&view=remind'); ?>"> <?php echo Text::_('COM_USERS_LOGIN_REMIND'); ?> </a> <?php if ($usersConfig->get('allowUserRegistration')) : ?> <a class="list-group-item" href="<?php echo Route::_('index.php?option=com_users&view=registration'); ?>"> <?php echo Text::_('COM_USERS_LOGIN_REGISTER'); ?> </a> <?php endif; ?> </div> </div> </div> </div> </div> PK ! 6�� reset/confirm.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); ?> <div class="reset-confirm<?php echo $this->pageclass_sfx; ?>"> <?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; ?> <form action="<?php echo Route::_('index.php?option=com_users&task=reset.confirm'); ?>" method="post" class="form-validate form-horizontal well"> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <fieldset> <p><?php echo Text::_($fieldset->label); ?></p> <?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <div class="control-group" <?php echo $attribs; ?>> <div class="control-label"> <?php echo $field->label; ?> </div> <div class="controls"> <?php echo $field->input; ?> </div> </div> <?php endforeach; ?> </fieldset> <?php endforeach; ?> <div class="control-group"> <div class="controls"> <button type="submit" class="btn btn-primary validate"><?php echo Text::_('JSUBMIT'); ?></button> </div> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> PK ! �;� reset/complete.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); ?> <div class="reset-complete<?php echo $this->pageclass_sfx; ?>"> <?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; ?> <form action="<?php echo Route::_('index.php?option=com_users&task=reset.complete'); ?>" method="post" class="form-validate form-horizontal well"> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <fieldset> <p><?php echo Text::_($fieldset->label); ?></p> <?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <div class="control-group" <?php echo $attribs; ?>> <div class="control-label"> <?php echo $field->label; ?> </div> <div class="controls"> <?php echo $field->input; ?> </div> </div> <?php endforeach; ?> </fieldset> <?php endforeach; ?> <div class="control-group"> <div class="controls"> <button type="submit" class="btn btn-primary validate"><?php echo Text::_('JSUBMIT'); ?></button> </div> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> PK ! Xb� � reset/default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); ?> <div class="reset<?php echo $this->pageclass_sfx; ?>"> <div class="row justify-content-center"> <div class="col-lg-4"> <?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; ?> <form id="user-registration" action="<?php echo Route::_('index.php?option=com_users&task=reset.request'); ?>" method="post" class="form-validate"> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <div> <p><?php echo Text::_($fieldset->label); ?></p> <?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <div class="mb-3" <?php echo $attribs; ?>> <?php echo $field->label; ?> <?php echo $field->input; ?> </div> <?php endforeach; ?> </div> <?php endforeach; ?> <div> <button type="submit" class="btn btn-primary validate"><?php echo Text::_('JSUBMIT'); ?></button> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> </div> </div> PK ! ��"�� � remind/default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); ?> <div class="remind<?php echo $this->pageclass_sfx; ?>"> <div class="row justify-content-center"> <div class="col-lg-4"> <?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; ?> <form id="user-registration" action="<?php echo Route::_('index.php?option=com_users&task=remind.remind'); ?>" method="post" class="form-validate"> <?php foreach ($this->form->getFieldsets() as $fieldset) : ?> <fieldset> <p><?php echo Text::_($fieldset->label); ?></p> <?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <div class="mb-3" <?php echo $attribs; ?>> <?php echo $field->label; ?> <?php echo $field->input; ?> </div> <?php endforeach; ?> </fieldset> <?php endforeach; ?> <div> <button type="submit" class="btn btn-primary validate"><?php echo Text::_('JSUBMIT'); ?></button> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> </div> </div> PK ! 0i.yP P profile/edit.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use HelixUltimate\Framework\Platform\Settings; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; HTMLHelper::_('behavior.keepalive'); HTMLHelper::_('behavior.formvalidator'); // Load user_profile plugin language $lang = Factory::getLanguage(); $lang->load('plg_user_profile', JPATH_ADMINISTRATOR); ?> <div class="profile-edit<?php echo $this->pageclass_sfx; ?>"> <div class="row justify-content-center"> <div class="col-lg-10 col-xl-7"> <?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; ?> <script type="text/javascript"> Joomla.twoFactorMethodChange = function(e) { var selectedPane = 'com_users_twofactor_' + jQuery('#jform_twofactor_method').val(); jQuery.each(jQuery('#com_users_twofactor_forms_container>div'), function(i, el) { if (el.id != selectedPane) { jQuery('#' + el.id).hide(0); } else { jQuery('#' + el.id).show(0); } }); } </script> <form id="member-profile" action="<?php echo Route::_('index.php?option=com_users&task=profile.save'); ?>" method="post" class="form-validate" enctype="multipart/form-data"> <?php // Iterate through the form fieldsets and display each one. ?> <?php foreach ($this->form->getFieldsets() as $group => $fieldset) : ?> <?php $fields = $this->form->getFieldset($group); ?> <?php if (count($fields)) : ?> <fieldset> <?php if (isset($fieldset->label)) : ?> <legend> <?php echo Text::_($fieldset->label); ?> </legend> <?php endif; ?> <?php if (isset($fieldset->description) && trim($fieldset->description)) : ?> <?php echo '<p>' . $this->escape(Text::_($fieldset->description)) . '</p>'; ?> <?php endif; ?> <?php // Iterate through the fields in the set and display them. ?> <div class="row mb-3"> <?php foreach ($fields as $field) : ?> <?php // If the field is hidden, just display the input. ?> <?php $showon = $field->getAttribute('showon'); $attribs = ''; if ($showon) { $attribs .= ' data-showon=\'' . json_encode(Settings::parseShowOnConditions($showon, $field->formControl)) . '\''; } // Enable disable on $enableOn = $field->getAttribute('enableon', ''); if ($enableOn) { $attribs .= ' data-enableon="' . $enableOn . '"'; } ?> <?php if ($field->hidden) : ?> <?php echo $field->input; ?> <?php else : ?> <?php if(($field->fieldname == 'name') || ($field->fieldname == 'username')) : ?> <div class="col-lg-12" <?php echo $attribs; ?>> <?php else: ?> <div class="col-lg-6" <?php echo $attribs; ?>> <?php endif; ?> <div class="mb-3"> <?php echo $field->label; ?> <?php if ($field->fieldname === 'password1') : ?> <input type="password" style="display:none"> <?php endif; ?> <?php echo $field->input; ?> </div> </div> <?php endif; ?> <?php endforeach; ?> </div> </fieldset> <?php endif; ?> <?php endforeach; ?> <?php if (count($this->twofactormethods) > 1) : ?> <fieldset> <legend><?php echo Text::_('COM_USERS_PROFILE_TWO_FACTOR_AUTH'); ?></legend> <div class="mb-3"> <label id="jform_twofactor_method-lbl" for="jform_twofactor_method" class="hasTooltip" title="<?php echo '<strong>' . Text::_('COM_USERS_PROFILE_TWOFACTOR_LABEL') . '</strong><br>' . Text::_('COM_USERS_PROFILE_TWOFACTOR_DESC'); ?>"> <?php echo Text::_('COM_USERS_PROFILE_TWOFACTOR_LABEL'); ?> </label> <?php echo HTMLHelper::_('select.genericlist', $this->twofactormethods, 'jform[twofactor][method]', array('onchange' => 'Joomla.twoFactorMethodChange()'), 'value', 'text', $this->otpConfig->method, 'jform_twofactor_method', false); ?> </div> <div id="com_users_twofactor_forms_container"> <?php foreach ($this->twofactorform as $form) : ?> <?php $style = $form['method'] == $this->otpConfig->method ? 'display: block' : 'display: none'; ?> <div id="com_users_twofactor_<?php echo $form['method']; ?>" style="<?php echo $style; ?>"> <?php echo $form['form']; ?> </div> <?php endforeach; ?> </div> </fieldset> <fieldset> <legend> <?php echo Text::_('COM_USERS_PROFILE_OTEPS'); ?> </legend> <div class="alert alert-info"> <?php echo Text::_('COM_USERS_PROFILE_OTEPS_DESC'); ?> </div> <?php if (empty($this->otpConfig->otep)) : ?> <div class="alert alert-warning"> <?php echo Text::_('COM_USERS_PROFILE_OTEPS_WAIT_DESC'); ?> </div> <?php else : ?> <?php foreach ($this->otpConfig->otep as $otep) : ?> <span class="col-lg-3"> <?php echo substr($otep, 0, 4); ?>-<?php echo substr($otep, 4, 4); ?>-<?php echo substr($otep, 8, 4); ?>-<?php echo substr($otep, 12, 4); ?> </span> <?php endforeach; ?> <div class="clearfix"></div> <?php endif; ?> </fieldset> <?php endif; ?> <div class="mb-3"> <button type="submit" class="btn btn-primary validate"><span><?php echo Text::_('JSUBMIT'); ?></span></button> <a class="btn btn-secondary" href="<?php echo Route::_('index.php?option=com_users&view=profile'); ?>" title="<?php echo Text::_('JCANCEL'); ?>"><?php echo Text::_('JCANCEL'); ?></a> <input type="hidden" name="option" value="com_users"> <input type="hidden" name="task" value="profile.save"> </div> <?php echo HTMLHelper::_('form.token'); ?> </form> </div> </div> </div> PK ! ��( ( profile/default_core.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; ?> <div id="users-profile-core"> <div class="d-flex mb-3"> <div class="me-auto"> <strong><?php echo Text::_('COM_USERS_PROFILE_CORE_LEGEND'); ?></strong> </div> <div> <?php if (Factory::getUser()->id == $this->data->id): ?> <a href="<?php echo Route::_('index.php?option=com_users&task=profile.edit&user_id=' . (int) $this->data->id); ?>"> <span class="fas fa-user-edit" aria-hidden="true"></span> <?php echo Text::_('COM_USERS_EDIT_PROFILE'); ?> </a> <?php endif;?> </div> </div> <ul class="list-group"> <li class="list-group-item"> <strong><?php echo Text::_('COM_USERS_PROFILE_NAME_LABEL'); ?></strong>: <?php echo $this->data->name; ?> </li> <li class="list-group-item"> <strong><?php echo Text::_('COM_USERS_PROFILE_USERNAME_LABEL'); ?></strong>: <?php echo htmlspecialchars($this->data->username, ENT_COMPAT, 'UTF-8'); ?> </li> <li class="list-group-item"> <strong><?php echo Text::_('COM_USERS_PROFILE_REGISTERED_DATE_LABEL'); ?></strong>: <?php echo HTMLHelper::_('date', $this->data->registerDate); ?> </li> <li class="list-group-item"> <strong><?php echo Text::_('COM_USERS_PROFILE_LAST_VISITED_DATE_LABEL'); ?></strong>: <?php if ($this->data->lastvisitDate != $this->db->getNullDate()): ?> <?php echo HTMLHelper::_('date', $this->data->lastvisitDate); ?> <?php else: ?> <?php echo Text::_('COM_USERS_PROFILE_NEVER_VISITED'); ?> <?php endif;?> </li> </ul> </div> PK ! ~g� profile/default_custom.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; // HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // HTMLHelper::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)) : ?> <div class="users-profile-custom-<?php echo $group; ?>" id="users-profile-custom-<?php echo $group; ?>"> <div class="mb-3"> <?php if (isset($fieldset->label) && ($legend = trim(Text::_($fieldset->label))) !== '') : ?> <strong><?php echo $legend; ?></strong> <?php endif; ?> <?php if (isset($fieldset->description) && trim($fieldset->description)) : ?> <div><?php echo $this->escape(Text::_($fieldset->description)); ?></span> <?php endif; ?> </div> <ul class="list-group"> <?php foreach ($fields as $field) : ?> <?php if (!$field->hidden && $field->type !== 'Spacer') : ?> <li class="list-group-item"> <strong><?php echo $field->title; ?></strong>: <?php if (key_exists($field->fieldname, $customFields)) : ?> <?php echo $customFields[$field->fieldname]->value ?: Text::_('COM_USERS_PROFILE_VALUE_NOT_FOUND'); ?> <?php elseif (HTMLHelper::isRegistered('users.' . $field->id)) : ?> <?php echo HTMLHelper::_('users.' . $field->id, $field->value); ?> <?php elseif (HTMLHelper::isRegistered('users.' . $field->fieldname)) : ?> <?php echo HTMLHelper::_('users.' . $field->fieldname, $field->value); ?> <?php elseif (HTMLHelper::isRegistered('users.' . $field->type)) : ?> <?php echo HTMLHelper::_('users.' . $field->type, $field->value); ?> <?php else : ?> <?php echo HTMLHelper::_('users.value', $field->value); ?> <?php endif; ?> </li> <?php endif; ?> <?php endforeach; ?> </ul> </div> <?php endif; ?> <?php endforeach; ?> PK ! �*]� � profile/default_params.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers/html'); ?> <?php $fields = $this->form->getFieldset('params'); ?> <?php if (count($fields)) : ?> <div id="users-profile-params"> <div class="mb-3"> <strong><?php echo Text::_('COM_USERS_SETTINGS_FIELDSET_LABEL'); ?></strong> </div> <ul class="list-group"> <?php foreach ($fields as $field) : ?> <?php if (!$field->hidden) : ?> <li class="list-group-item"> <strong><?php echo $field->title; ?></strong>: <?php if (HTMLHelper::isRegistered('users.' . $field->id)) : ?> <?php echo HTMLHelper::_('users.' . $field->id, $field->value); ?> <?php elseif (HTMLHelper::isRegistered('users.' . $field->fieldname)) : ?> <?php echo HTMLHelper::_('users.' . $field->fieldname, $field->value); ?> <?php elseif (HTMLHelper::isRegistered('users.' . $field->type)) : ?> <?php echo HTMLHelper::_('users.' . $field->type, $field->value); ?> <?php else : ?> <?php echo HTMLHelper::_('users.value', $field->value); ?> <?php endif; ?> </li> <?php endif; ?> <?php endforeach; ?> </ul> </div> <?php endif; ?> PK ! � õ� � profile/default.phpnu �[��� <?php /** * @package Helix Ultimate Framework * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ defined ('_JEXEC') or die(); ?> <div class="profile<?php echo $this->pageclass_sfx; ?>"> <?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 ! �s2� � registration/complete.phpnu �[��� PK ! �9l�� � 0 registration/default.phpnu �[��� PK ! �E��M M J login/default_logout.phpnu �[��� PK ! ��V� � login/default.phpnu �[��� PK ! BAA�^ ^ < login/default_login.phpnu �[��� PK ! 6�� �, reset/confirm.phpnu �[��� PK ! �;� (5 reset/complete.phpnu �[��� PK ! Xb� � p= reset/default.phpnu �[��� PK ! ��"�� � �E remind/default.phpnu �[��� PK ! 0i.yP P �M profile/edit.phpnu �[��� PK ! ��( ( wf profile/default_core.phpnu �[��� PK ! ~g� �m profile/default_custom.phpnu �[��� PK ! �*]� � 6x profile/default_params.phpnu �[��� PK ! � õ� � @~ profile/default.phpnu �[��� PK � �
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка