Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91823459
PassphraseCredentialControl.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
Thu, Nov 14, 20:21
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Nov 16, 20:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22324400
Attached To
rPH Phabricator
PassphraseCredentialControl.php
View Options
<?php
final
class
PassphraseCredentialControl
extends
AphrontFormControl
{
private
$options
;
private
$credentialType
;
private
$defaultUsername
;
private
$allowNull
;
public
function
setAllowNull
(
$allow_null
)
{
$this
->
allowNull
=
$allow_null
;
return
$this
;
}
public
function
setDefaultUsername
(
$default_username
)
{
$this
->
defaultUsername
=
$default_username
;
return
$this
;
}
public
function
setCredentialType
(
$credential_type
)
{
$this
->
credentialType
=
$credential_type
;
return
$this
;
}
public
function
getCredentialType
()
{
return
$this
->
credentialType
;
}
public
function
setOptions
(
array
$options
)
{
assert_instances_of
(
$options
,
'PassphraseCredential'
);
$this
->
options
=
$options
;
return
$this
;
}
protected
function
getCustomControlClass
()
{
return
'passphrase-credential-control'
;
}
protected
function
renderInput
()
{
$options_map
=
array
();
foreach
(
$this
->
options
as
$option
)
{
$options_map
[
$option
->
getPHID
()]
=
pht
(
"%s %s"
,
'K'
.
$option
->
getID
(),
$option
->
getName
());
}
$disabled
=
$this
->
getDisabled
();
if
(
$this
->
allowNull
)
{
$options_map
=
array
(
''
=>
pht
(
'(No Credentials)'
))
+
$options_map
;
}
else
{
if
(!
$options_map
)
{
$options_map
[
''
]
=
pht
(
'(No Existing Credentials)'
);
$disabled
=
true
;
}
}
Javelin
::
initBehavior
(
'passphrase-credential-control'
);
$options
=
AphrontFormSelectControl
::
renderSelectTag
(
$this
->
getValue
(),
$options_map
,
array
(
'id'
=>
$this
->
getControlID
(),
'name'
=>
$this
->
getName
(),
'disabled'
=>
$disabled
?
'disabled'
:
null
,
'sigil'
=>
'passphrase-credential-select'
,
));
$button
=
javelin_tag
(
'a'
,
array
(
'href'
=>
'#'
,
'class'
=>
'button grey'
,
'sigil'
=>
'passphrase-credential-add'
,
'mustcapture'
=>
true
,
),
pht
(
'Add Credential'
));
return
javelin_tag
(
'div'
,
array
(
'sigil'
=>
'passphrase-credential-control'
,
'meta'
=>
array
(
'type'
=>
$this
->
getCredentialType
(),
'username'
=>
$this
->
defaultUsername
,
'allowNull'
=>
$this
->
allowNull
,
),
),
array
(
$options
,
$button
,
));
}
}
Event Timeline
Log In to Comment