Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F439637
DifferentialAuditorsField.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
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
json_encode
(
$this
->
getValue
());
}
public
function
setValueFromStorage
(
$value
)
{
$this
->
setValue
(
phutil_json_decode
(
$value
));
return
$this
;
}
public
function
shouldAppearInCommitMessage
()
{
return
true
;
}
public
function
shouldAllowEditInCommitMessage
()
{
return
true
;
}
public
function
getRequiredHandlePHIDsForCommitMessage
()
{
return
nonempty
(
$this
->
getValue
(),
array
());
}
public
function
parseCommitMessageValue
(
$value
)
{
return
$this
->
parseObjectList
(
$value
,
array
(
PhabricatorPeoplePHIDTypeUser
::
TYPECONST
,
PhabricatorProjectPHIDTypeProject
::
TYPECONST
,
));
}
public
function
renderCommitMessageValue
(
array
$handles
)
{
return
$this
->
renderObjectList
(
$handles
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 4:19 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
63828
Default Alt Text
DifferentialAuditorsField.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment