Page MenuHomeWMGMC Issues

PassphraseTokenCredentialType.php
No OneTemporary

PassphraseTokenCredentialType.php

<?php
final class PassphraseTokenCredentialType
extends PassphraseCredentialType {
const CREDENTIAL_TYPE = 'token';
const PROVIDES_TYPE = 'provides/token';
public function getCredentialType() {
return self::CREDENTIAL_TYPE;
}
public function getProvidesType() {
return self::PROVIDES_TYPE;
}
public function getCredentialTypeName() {
return pht('Token');
}
public function getCredentialTypeDescription() {
return pht('Store an API token.');
}
public function getSecretLabel() {
return pht('Token');
}
public function newSecretControl() {
return id(new AphrontFormTextControl());
}
public function shouldRequireUsername() {
return false;
}
}

File Metadata

Mime Type
text/x-php
Expires
9月 11 Thu, 1:31 PM (22 h, 2 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5483
默认替代文本
PassphraseTokenCredentialType.php (713 B)

Event Timeline