Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120406210
ConduitEpochParameterType.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
Fri, Jul 4, 03:45
Size
876 B
Mime Type
text/x-php
Expires
Sun, Jul 6, 03:45 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27183931
Attached To
rPH Phabricator
ConduitEpochParameterType.php
View Options
<?php
final
class
ConduitEpochParameterType
extends
ConduitParameterType
{
protected
function
getParameterValue
(
array
$request
,
$key
)
{
$value
=
parent
::
getParameterValue
(
$request
,
$key
);
if
(!
is_int
(
$value
))
{
$this
->
raiseValidationException
(
$request
,
$key
,
pht
(
'Expected epoch timestamp as integer, got something else.'
));
}
if
(
$value
<=
0
)
{
$this
->
raiseValidationException
(
$request
,
$key
,
pht
(
'Epoch timestamp must be larger than 0, got %d.'
,
$value
));
}
return
$value
;
}
protected
function
getParameterTypeName
()
{
return
'epoch'
;
}
protected
function
getParameterFormatDescriptions
()
{
return
array
(
pht
(
'Epoch timestamp, as an integer.'
),
);
}
protected
function
getParameterExamples
()
{
return
array
(
'1450019509'
,
);
}
}
Event Timeline
Log In to Comment