Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F454477
DiffusionCommitAcceptTransaction.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
DiffusionCommitAcceptTransaction.php
View Options
<?php
final
class
DiffusionCommitAcceptTransaction
extends
DiffusionCommitAuditTransaction
{
const
TRANSACTIONTYPE
=
'diffusion.commit.accept'
;
const
ACTIONKEY
=
'accept'
;
protected
function
getCommitActionLabel
()
{
return
pht
(
"Accept Commit
\x
E2
\x
9C
\x
94"
);
}
protected
function
getCommitActionDescription
()
{
return
pht
(
'This commit will be approved.'
);
}
public
function
getIcon
()
{
return
'fa-check-circle-o'
;
}
public
function
getColor
()
{
return
'green'
;
}
protected
function
getCommitActionOrder
()
{
return
500
;
}
public
function
getActionName
()
{
return
pht
(
'Accepted'
);
}
public
function
generateOldValue
(
$object
)
{
$actor
=
$this
->
getActor
();
return
$this
->
isViewerAcceptingAuditor
(
$object
,
$actor
);
}
public
function
applyExternalEffects
(
$object
,
$value
)
{
$status
=
PhabricatorAuditStatusConstants
::
ACCEPTED
;
$actor
=
$this
->
getActor
();
$this
->
applyAuditorEffect
(
$object
,
$actor
,
$value
,
$status
);
}
protected
function
validateAction
(
$object
,
PhabricatorUser
$viewer
)
{
$config_key
=
'audit.can-author-close-audit'
;
if
(!
PhabricatorEnv
::
getEnvConfig
(
$config_key
))
{
if
(
$this
->
isViewerCommitAuthor
(
$object
,
$viewer
))
{
throw
new
Exception
(
pht
(
'You can not accept this commit because you are the commit '
.
'author. You can only accept commits you did not author. You can '
.
'change this behavior by adjusting the "%s" setting in Config.'
,
$config_key
));
}
}
if
(
$this
->
isViewerAcceptingAuditor
(
$object
,
$viewer
))
{
throw
new
Exception
(
pht
(
'You can not accept this commit because you have already '
.
'accepted it.'
));
}
}
public
function
getTitle
()
{
return
pht
(
'%s accepted this commit.'
,
$this
->
renderAuthor
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s accepted %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 5:06 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69569
Default Alt Text
DiffusionCommitAcceptTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment