Page MenuHomestyx hydra

PassphrasePasswordCredentialType.php
No OneTemporary

PassphrasePasswordCredentialType.php

<?php
final class PassphrasePasswordCredentialType
extends PassphraseCredentialType {
const CREDENTIAL_TYPE = 'password';
const PROVIDES_TYPE = 'provides/password';
public function getCredentialType() {
return self::CREDENTIAL_TYPE;
}
public function getProvidesType() {
return self::PROVIDES_TYPE;
}
public function getCredentialTypeName() {
return pht('Password');
}
public function getCredentialTypeDescription() {
return pht('Store a plaintext password.');
}
public function getSecretLabel() {
return pht('Password');
}
public function newSecretControl() {
return id(new AphrontFormPasswordControl())
->setDisableAutocomplete(true);
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Nov 21, 3:11 PM (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
347184
Default Alt Text
PassphrasePasswordCredentialType.php (710 B)

Event Timeline