Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2890559
PhabricatorDashboardNameTransaction.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
PhabricatorDashboardNameTransaction.php
View Options
<?php
final
class
PhabricatorDashboardNameTransaction
extends
PhabricatorDashboardTransactionType
{
const
TRANSACTIONTYPE
=
'dashboard: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 dashboard 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
(
'Dashboards must have a name.'
)
,
$xaction
)
;
continue
;
}
if
(
strlen
(
$new
)
>
$max_length
)
{
$errors
[
]
=
$this
->
newInvalidError
(
pht
(
'Dashboard names must not be longer than %s characters.'
,
$max_length
)
)
;
continue
;
}
}
if
(
!
$errors
)
{
if
(
$this
->
isEmptyTextTransaction
(
$object
->
getName
(
)
,
$xactions
)
)
{
$errors
[
]
=
$this
->
newRequiredError
(
pht
(
'Dashboards must have a name.'
)
)
;
}
}
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, 13:45 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125201
Default Alt Text
PhabricatorDashboardNameTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment