Page MenuHomestyx hydra

AphrontFormPasswordControl.php
No OneTemporary

AphrontFormPasswordControl.php

<?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(),
));
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Nov 26, 7:26 PM (11 h, 39 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
363110
Default Alt Text
AphrontFormPasswordControl.php (499 B)

Event Timeline