Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97785317
PhabricatorRepositoryNotifyTransaction.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
Mon, Jan 6, 09:24
Size
812 B
Mime Type
text/x-php
Expires
Wed, Jan 8, 09:24 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23447347
Attached To
rPH Phabricator
PhabricatorRepositoryNotifyTransaction.php
View Options
<?php
final
class
PhabricatorRepositoryNotifyTransaction
extends
PhabricatorRepositoryTransactionType
{
const
TRANSACTIONTYPE
=
'repo:notify'
;
public
function
generateOldValue
(
$object
)
{
return
(
int
)!
$object
->
getDetail
(
'herald-disabled'
);
}
public
function
generateNewValue
(
$object
,
$value
)
{
return
(
int
)
$value
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setDetail
(
'herald-disabled'
,
(
int
)!
$value
);
}
public
function
getTitle
()
{
$new
=
$this
->
getNewValue
();
if
(
$new
)
{
return
pht
(
'%s enabled notifications and publishing for this repository.'
,
$this
->
renderAuthor
());
}
else
{
return
pht
(
'%s disabled notifications and publishing for this repository.'
,
$this
->
renderAuthor
());
}
}
}
Event Timeline
Log In to Comment