Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93075347
PhrequentPushConduitAPIMethod.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 26, 00:42
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 00:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22567696
Attached To
rPH Phabricator
PhrequentPushConduitAPIMethod.php
View Options
<?php
final
class
PhrequentPushConduitAPIMethod
extends
PhrequentConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'phrequent.push'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Start tracking time on an object by '
.
'pushing it on the tracking stack.'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
defineParamTypes
()
{
return
array
(
'objectPHID'
=>
'required phid'
,
'startTime'
=>
'int'
);
}
public
function
defineReturnType
()
{
return
'phid'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$user
=
$request
->
getUser
();
$object_phid
=
$request
->
getValue
(
'objectPHID'
);
$timestamp
=
$request
->
getValue
(
'startTime'
);
if
(
$timestamp
===
null
)
{
$timestamp
=
time
();
}
$editor
=
new
PhrequentTrackingEditor
();
return
$editor
->
startTracking
(
$user
,
$object_phid
,
$timestamp
);
}
}
Event Timeline
Log In to Comment