Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3294993
DiffusionCommitVerifyTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionCommitVerifyTransaction.php
View Options
<?php
final
class
DiffusionCommitVerifyTransaction
extends
DiffusionCommitAuditTransaction
{
const
TRANSACTIONTYPE
=
'diffusion.commit.verify'
;
const
ACTIONKEY
=
'verify'
;
protected
function
getCommitActionLabel
(
)
{
return
pht
(
'Request Verification'
)
;
}
protected
function
getCommitActionDescription
(
)
{
return
pht
(
'Auditors will be asked to verify that concerns have been addressed.'
)
;
}
protected
function
getCommitActionGroupKey
(
)
{
return
DiffusionCommitEditEngine
::
ACTIONGROUP_COMMIT
;
}
public
function
getIcon
(
)
{
return
'fa-refresh'
;
}
public
function
getColor
(
)
{
return
'indigo'
;
}
protected
function
getCommitActionOrder
(
)
{
return
600
;
}
public
function
getActionName
(
)
{
return
pht
(
'Requested Verification'
)
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setAuditStatus
(
DiffusionCommitAuditStatus
::
NEEDS_VERIFICATION
)
;
}
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
)
{
if
(
!
$this
->
isViewerCommitAuthor
(
$object
,
$viewer
)
)
{
throw
new
Exception
(
pht
(
'You can not request verification of this commit because you '
.
'are not the author.'
)
)
;
}
if
(
!
$object
->
isAuditStatusConcernRaised
(
)
)
{
throw
new
Exception
(
pht
(
'You can not request verification of this commit because no '
.
'auditors have raised concerns with it.'
)
)
;
}
}
public
function
getTitle
(
)
{
return
pht
(
'%s requested verification of this commit.'
,
$this
->
renderAuthor
(
)
)
;
}
public
function
getTitleForFeed
(
)
{
return
pht
(
'%s requested verification of %s.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderObject
(
)
)
;
}
public
function
getTransactionTypeForConduit
(
$xaction
)
{
return
'request-verification'
;
}
public
function
getFieldValuesForConduit
(
$object
,
$data
)
{
return
array
(
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 00:26 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1199340
Default Alt Text
DiffusionCommitVerifyTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment