Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892533
PhabricatorDashboardPortalNameTransaction.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
PhabricatorDashboardPortalNameTransaction.php
View Options
<?php
final
class
PhabricatorDashboardPortalNameTransaction
extends
PhabricatorDashboardPortalTransactionType
{
const
TRANSACTIONTYPE
=
'name'
;
public
function
generateOldValue
(
$object
)
{
return
$object
->
getName
(
)
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setName
(
$value
)
;
}
public
function
getTitle
(
)
{
$old
=
$this
->
getOldValue
(
)
;
$new
=
$this
->
getNewValue
(
)
;
return
pht
(
'%s renamed this portal from %s to %s.'
,
$this
->
renderAuthor
(
)
,
$this
->
renderOldValue
(
)
,
$this
->
renderNewValue
(
)
)
;
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
(
)
;
$max_length
=
$object
->
getColumnMaximumByteLength
(
'name'
)
;
foreach
(
$xactions
as
$xaction
)
{
$new
=
$xaction
->
getNewValue
(
)
;
if
(
!
strlen
(
$new
)
)
{
$errors
[
]
=
$this
->
newInvalidError
(
pht
(
'Portals must have a title.'
)
,
$xaction
)
;
continue
;
}
if
(
strlen
(
$new
)
>
$max_length
)
{
$errors
[
]
=
$this
->
newInvalidError
(
pht
(
'Portal names must not be longer than %s characters.'
,
$max_length
)
)
;
continue
;
}
}
if
(
!
$errors
)
{
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getName
(
)
,
$xactions
)
)
{
$errors
[
]
=
$this
->
newRequiredError
(
pht
(
'Portals must have a title.'
)
)
;
}
}
return
$errors
;
}
public
function
getTransactionTypeForConduit
(
$xaction
)
{
return
'name'
;
}
public
function
getFieldValuesForConduit
(
$xaction
,
$data
)
{
return
array
(
'old'
=>
$xaction
->
getOldValue
(
)
,
'new'
=>
$xaction
->
getNewValue
(
)
,
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 16:58 (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126709
Default Alt Text
PhabricatorDashboardPortalNameTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment