Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295256
PhabricatorRepositoryDefaultBranchTransaction.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
1021 B
Referenced Files
None
Subscribers
None
PhabricatorRepositoryDefaultBranchTransaction.php
View Options
<?php
final
class
PhabricatorRepositoryDefaultBranchTransaction
extends
PhabricatorRepositoryTransactionType
{
const
TRANSACTIONTYPE
=
'repo:default-branch'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getDetail
(
'default-branch'
)
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDetail
(
'default-branch'
,
$value
)
;
}
public
function
getTitle
(
)
{
$old
=
$this
->
getOldValue
(
)
;
$new
=
$this
->
getNewValue
(
)
;
if
(
!
phutil_nonempty_string
(
$new
)
)
{
return
pht
(
'%s removed %s as the default branch.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderOldValue
(
)
)
;
}
else
if
(
!
phutil_nonempty_string
(
$old
)
)
{
return
pht
(
'%s set the default branch to %s.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderNewValue
(
)
)
;
}
else
{
return
pht
(
'%s changed the default branch from %s to %s.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderOldValue
(
)
,
$this
->
renderNewValue
(
)
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:37 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1199091
Default Alt Text
PhabricatorRepositoryDefaultBranchTransaction.php (1021 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment