Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108317537
ManiphestCreateTaskConduitAPIMethod.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, Apr 15, 17:23
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Apr 17, 17:23 (2 d)
Engine
blob
Format
Raw Data
Handle
25526565
Attached To
rPH Phabricator
ManiphestCreateTaskConduitAPIMethod.php
View Options
<?php
final
class
ManiphestCreateTaskConduitAPIMethod
extends
ManiphestConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'maniphest.createtask'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a new Maniphest task.'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_FROZEN
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'This method is frozen and will eventually be deprecated. New code '
.
'should use "maniphest.edit" instead.'
);
}
protected
function
defineParamTypes
()
{
return
$this
->
getTaskFields
(
$is_new
=
true
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR-INVALID-PARAMETER'
=>
pht
(
'Missing or malformed parameter.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$task
=
ManiphestTask
::
initializeNewTask
(
$request
->
getUser
());
$task
=
$this
->
applyRequest
(
$task
,
$request
,
$is_new
=
true
);
return
$this
->
buildTaskInfoDictionary
(
$task
);
}
}
Event Timeline
Log In to Comment