Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109789090
AphrontFormPasswordControl.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 23, 09:47
Size
499 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 09:47 (2 d)
Engine
blob
Format
Raw Data
Handle
25705295
Attached To
rPH Phabricator
AphrontFormPasswordControl.php
View Options
<?php
final
class
AphrontFormPasswordControl
extends
AphrontFormControl
{
protected
function
getCustomControlClass
()
{
return
'aphront-form-control-password'
;
}
protected
function
renderInput
()
{
return
phutil_tag
(
'input'
,
array
(
'type'
=>
'password'
,
'name'
=>
$this
->
getName
(),
'value'
=>
$this
->
getValue
(),
'disabled'
=>
$this
->
getDisabled
()
?
'disabled'
:
null
,
'id'
=>
$this
->
getID
(),
));
}
}
Event Timeline
Log In to Comment