Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91610215
AlmanacNetworkNameTransaction.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
Tue, Nov 12, 16:48
Size
1011 B
Mime Type
text/x-php
Expires
Thu, Nov 14, 16:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22292662
Attached To
rPH Phabricator
AlmanacNetworkNameTransaction.php
View Options
<?php
final
class
AlmanacNetworkNameTransaction
extends
AlmanacNetworkTransactionType
{
const
TRANSACTIONTYPE
=
'almanac:network:name'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getName
();
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setName
(
$value
);
}
public
function
getTitle
()
{
return
pht
(
'%s renamed this network from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
public
function
getTitleForFeed
()
{
return
pht
(
'%s renamed %s from %s to %s.'
,
$this
->
renderAuthor
(),
$this
->
renderObject
(),
$this
->
renderOldValue
(),
$this
->
renderNewValue
());
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
();
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getName
(),
$xactions
))
{
$errors
[]
=
$this
->
newRequiredError
(
pht
(
'Network name is required.'
));
}
return
$errors
;
}
}
Event Timeline
Log In to Comment