Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568096
ManiphestTaskBulkEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1006 B
Referenced Files
None
Subscribers
None
ManiphestTaskBulkEngine.php
View Options
<?php
final
class
ManiphestTaskBulkEngine
extends
PhabricatorBulkEngine
{
private
$workboard
;
public
function
setWorkboard
(
PhabricatorProject
$workboard
)
{
$this
->
workboard
=
$workboard
;
return
$this
;
}
public
function
getWorkboard
()
{
return
$this
->
workboard
;
}
public
function
newSearchEngine
()
{
return
new
ManiphestTaskSearchEngine
();
}
public
function
newEditEngine
()
{
return
new
ManiphestEditEngine
();
}
public
function
getDoneURI
()
{
$board_uri
=
$this
->
getBoardURI
();
if
(
$board_uri
)
{
return
$board_uri
;
}
return
parent
::
getDoneURI
();
}
public
function
getCancelURI
()
{
$board_uri
=
$this
->
getBoardURI
();
if
(
$board_uri
)
{
return
$board_uri
;
}
return
parent
::
getCancelURI
();
}
private
function
getBoardURI
()
{
$workboard
=
$this
->
getWorkboard
();
if
(
$workboard
)
{
$project_id
=
$workboard
->
getID
();
return
"/project/board/{$project_id}/"
;
}
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:14 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
107096
Default Alt Text
ManiphestTaskBulkEngine.php (1006 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment