mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
10617d6942
These are just the admin settings templates. Part of MDL-55071
74 lines
2.3 KiB
Plaintext
74 lines
2.3 KiB
Plaintext
{{!
|
|
This file is part of Moodle - http://moodle.org/
|
|
|
|
Moodle is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Moodle is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
}}
|
|
{{!
|
|
@template core_admin/setting_configpasswordunmask
|
|
|
|
Admin password unmask setting template.
|
|
|
|
Context variables required for this template:
|
|
* name - form element name
|
|
* size - form element size
|
|
* value - form element value
|
|
* id - element id
|
|
|
|
Example context (json):
|
|
{
|
|
"name": "test",
|
|
"id": "test0",
|
|
"size": "8",
|
|
"value": "secret"
|
|
}
|
|
}}
|
|
<div class="form-password">
|
|
<input type="password" name="{{name}}" size="{{size}}" id="{{id}}" value="{{value}}">
|
|
<div class="unmask" id="{{id}}unmaskdiv"></div>
|
|
</div>
|
|
{{#js}}
|
|
(function() {
|
|
var id = '{{id}}';
|
|
var unmaskid = id + 'unmask';
|
|
var unmaskdivid = id + 'unmaskdiv';
|
|
var unmaskstr = {{#quote}}{{#str}}unmaskpassword, form{{/str}}{{/quote}};
|
|
var is_ie = (navigator.userAgent.toLowerCase().indexOf("msie") != -1);
|
|
|
|
document.getElementById(id).setAttribute("autocomplete", "off");
|
|
|
|
var unmaskdiv = document.getElementById(unmaskdivid);
|
|
|
|
var unmaskchb = document.createElement("input");
|
|
unmaskchb.setAttribute("type", "checkbox");
|
|
unmaskchb.setAttribute("id", unmaskid);
|
|
unmaskchb.onchange = function() {unmaskPassword(id);};
|
|
unmaskdiv.appendChild(unmaskchb);
|
|
|
|
var unmasklbl = document.createElement("label");
|
|
unmasklbl.innerHTML = unmaskstr;
|
|
if (is_ie) {
|
|
unmasklbl.setAttribute("htmlFor", unmaskid);
|
|
} else {
|
|
unmasklbl.setAttribute("for", unmaskid);
|
|
}
|
|
unmaskdiv.appendChild(unmasklbl);
|
|
|
|
if (is_ie) {
|
|
// Ugly hack to work around the famous onchange IE bug.
|
|
unmaskchb.onclick = function() {this.blur();};
|
|
unmaskdiv.onclick = function() {this.blur();};
|
|
}
|
|
})()
|
|
{{/js}}
|