Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102240250
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
Tue, Feb 18, 15:41
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Feb 20, 15:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24312380
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
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
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAllowEditInCommitMessage
()
{
return
true
;
}
public
function
canDisableField
()
{
return
false
;
}
public
function
getRequiredHandlePHIDsForCommitMessage
()
{
return
nonempty
(
$this
->
getValue
(),
array
());
}
public
function
parseCommitMessageValue
(
$value
)
{
return
$this
->
parseObjectList
(
$value
,
array
(
PhabricatorPeopleUserPHIDType
::
TYPECONST
,
PhabricatorProjectProjectPHIDType
::
TYPECONST
,
));
}
public
function
renderCommitMessageValue
(
array
$handles
)
{
return
$this
->
renderObjectList
(
$handles
);
}
}
Event Timeline
Log In to Comment