Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18921319
DifferentialAuditorsField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
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
shouldAppearInConduitTransactions
()
{
return
true
;
}
protected
function
newConduitEditParameterType
()
{
return
new
ConduitPHIDListParameterType
();
}
public
function
shouldAppearInApplicationTransactions
()
{
return
true
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Nov 11, 1:59 PM (1 d, 21 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8219724
Default Alt Text
DifferentialAuditorsField.php (1 KB)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment