| Current Path : /proc/thread-self/root/proc/thread-self/root/tmp/ |
| Current File : //proc/thread-self/root/proc/thread-self/root/tmp/phpibWzyV |
home/digilove/public_html/plugins/system/nrframework/fields/password.php 0000644 00000003222 15242541164 0022766 0 ustar 00 <?php
/**
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2024 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
// No direct access to this file
defined('_JEXEC') or die;
use Joomla\CMS\Form\Field\PasswordField;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Factory;
class JFormFieldNR_Password extends PasswordField
{
/**
* Method to get the field input markup.
*
* @return string The field input markup.
*/
public function getInput()
{
if (defined('nrJ4'))
{
return parent::getInput();
}
$id = $this->id . '_btn';
$doc = Factory::getDocument();
HTMLHelper::stylesheet('plg_system_nrframework/fields.css', false, true);
$doc->addStyleDeclaration('
.nr-pass-btn {
display:flex;
align-items:center;
}
.nr-pass-btn > * {
margin:0 !important;
padding:0 !important;
}
.nr-pass-btn label {
margin-left:5px !important;
user-select: none;
}
');
$doc->addScriptDeclaration('
jQuery(function($) {
$("#' . $id . '").change(function() {
var type = $(this).is(":checked") ? "text" : "password";
$(this).closest(".nr-pass").find(".nr-pass-input input").attr("type", type);
})
})
');
return '
<div class="nr-pass input-flex">
<div class="input-flex-item nr-pass-input">'. parent::getInput() .'</div>
<div class="input-flex-item nr-pass-btn">
<input name="' . $id . '" id="' . $id . '" type="checkbox"/>
<label for="' . $id . '">' . Text::_("JSHOW") . '</label>
</div>
</div>
';
}
} home/digilove/public_html/110/libraries/fof/form/field/password.php 0000644 00000004620 15242541246 0021237 0 ustar 00 <?php
/**
* @package FrameworkOnFramework
* @subpackage form
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// Protect from unauthorized access
defined('FOF_INCLUDED') or die;
JFormHelper::loadFieldClass('password');
/**
* Form Field class for the FOF framework
* Supports a one line text field.
*
* @package FrameworkOnFramework
* @since 2.0
*/
class FOFFormFieldPassword extends JFormFieldPassword implements FOFFormField
{
protected $static;
protected $repeatable;
/** @var FOFTable The item being rendered in a repeatable form field */
public $item;
/** @var int A monotonically increasing number, denoting the row number in a repeatable view */
public $rowid;
/**
* Method to get certain otherwise inaccessible properties from the form field object.
*
* @param string $name The property name for which to the the value.
*
* @return mixed The property value or null.
*
* @since 2.0
*/
public function __get($name)
{
switch ($name)
{
case 'static':
if (empty($this->static))
{
$this->static = $this->getStatic();
}
return $this->static;
break;
case 'repeatable':
if (empty($this->repeatable))
{
$this->repeatable = $this->getRepeatable();
}
return $this->repeatable;
break;
default:
return parent::__get($name);
}
}
/**
* Get the rendering of this field type for static display, e.g. in a single
* item view (typically a "read" task).
*
* @since 2.0
*
* @return string The field HTML
*/
public function getStatic()
{
$class = $this->element['class'] ? ' class="' . (string) $this->element['class'] . '"' : '';
return '<span id="' . $this->id . '" ' . $class . '>' .
htmlspecialchars($this->value, ENT_COMPAT, 'UTF-8') .
'</span>';
}
/**
* Get the rendering of this field type for a repeatable (grid) display,
* e.g. in a view listing many item (typically a "browse" task)
*
* @since 2.0
*
* @return string The field HTML
*/
public function getRepeatable()
{
$class = $this->element['class'] ? (string) $this->element['class'] : '';
return '<span class="' . $this->id . ' ' . $class . '">' .
htmlspecialchars(FOFFormFieldList::getOptionName($this->getOptions(), $this->value), ENT_COMPAT, 'UTF-8') .
'</span>';
}
}