Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295582
PhabricatorAuthContactNumberPrimaryTransaction.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
PhabricatorAuthContactNumberPrimaryTransaction.php
View Options
<?php
final
class
PhabricatorAuthContactNumberPrimaryTransaction
extends
PhabricatorAuthContactNumberTransactionType
{
const
TRANSACTIONTYPE
=
'primary'
;
public
function
generateOldValue
(
$object
)
{
return
(bool)
$object
->
getIsPrimary
(
)
;
}
public
function
applyInternalEffects
(
$object
,
$value
)
{
$object
->
setIsPrimary
(
(int)
$value
)
;
}
public
function
getTitle
(
)
{
return
pht
(
'%s made this the primary contact number.'
,
$this
->
renderAuthor
(
)
)
;
}
public
function
validateTransactions
(
$object
,
array
$xactions
)
{
$errors
=
array
(
)
;
foreach
(
$xactions
as
$xaction
)
{
$new_value
=
$xaction
->
getNewValue
(
)
;
if
(
!
$new_value
)
{
$errors
[
]
=
$this
->
newInvalidError
(
pht
(
'To choose a different primary contact number, make that '
.
'number primary (instead of trying to demote this one).'
)
,
$xaction
)
;
continue
;
}
if
(
$object
->
isDisabled
(
)
)
{
$errors
[
]
=
$this
->
newInvalidError
(
pht
(
'You can not make a disabled number a primary contact number.'
)
,
$xaction
)
;
continue
;
}
$mfa_error
=
$this
->
newContactNumberMFAError
(
$object
,
$xaction
)
;
if
(
$mfa_error
)
{
$errors
[
]
=
$mfa_error
;
continue
;
}
}
return
$errors
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 02:38 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1164801
Default Alt Text
PhabricatorAuthContactNumberPrimaryTransaction.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment