Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97247446
DifferentialAuditorsField.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
Fri, Jan 3, 18:49
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Jan 5, 18:49 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23364008
Attached To
rPH Phabricator
DifferentialAuditorsField.php
View Options
<?php
final
class
DifferentialAuditorsField
extends
DifferentialStoredCustomField
{
public
function
getFieldKey
()
{
return
'phabricator:auditors'
;
}
public
function
getFieldName
()
{
return
pht
(
'Auditors'
);
}
public
function
getFieldDescription
()
{
return
pht
(
'Allows commits to trigger audits explicitly.'
);
}
public
function
getValueForStorage
()
{
return
phutil_json_encode
(
$this
->
getValue
());
}
public
function
setValueFromStorage
(
$value
)
{
try
{
$this
->
setValue
(
phutil_json_decode
(
$value
));
}
catch
(
PhutilJSONParserException
$ex
)
{
$this
->
setValue
(
array
());
}
return
$this
;
}
public
function
canDisableField
()
{
return
false
;
}
public
function
shouldAppearInEditEngine
()
{
return
true
;
}
public
function
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAppearInConduitTransactions
()
{
return
true
;
}
protected
function
newConduitEditParameterType
()
{
return
new
ConduitPHIDListParameterType
();
}
public
function
shouldAppearInApplicationTransactions
()
{
return
true
;
}
}
Event Timeline
Log In to Comment