123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Form text element
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Framework\Data\Form\Element;
- class Obscure extends \Magento\Framework\Data\Form\Element\Password
- {
- /**
- * @var string
- */
- protected $_obscuredValue = '******';
- /**
- * Hide value to make sure it will not show in HTML
- *
- * @param string $index
- * @return string
- */
- public function getEscapedValue($index = null)
- {
- $value = parent::getEscapedValue($index);
- if (!empty($value)) {
- return $this->_obscuredValue;
- }
- return $value;
- }
- /**
- * Returns list of html attributes possible to output in HTML
- *
- * @return string[]
- */
- public function getHtmlAttributes()
- {
- return [
- 'type',
- 'title',
- 'class',
- 'style',
- 'onclick',
- 'onchange',
- 'onkeyup',
- 'disabled',
- 'readonly',
- 'maxlength',
- 'tabindex',
- 'data-form-part',
- 'data-role',
- 'data-action'
- ];
- }
- }
|