Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281160
ArcanistBookmarksWorkflow.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
ArcanistBookmarksWorkflow.php
View Options
<?php
final
class
ArcanistBookmarksWorkflow
extends
ArcanistMarkersWorkflow
{
public
function
getWorkflowName
(
)
{
return
'bookmarks'
;
}
public
function
getWorkflowArguments
(
)
{
return
array
(
)
;
}
public
function
getWorkflowInformation
(
)
{
$help
=
pht
(
<<<EOHELP
Lists bookmarks in the working copy, annotated with additional information
about review status.
EOHELP
)
;
return
$this
->
newWorkflowInformation
(
)
->
setSynopsis
(
pht
(
'Show an enhanced view of bookmarks in the working copy.'
)
)
->
addExample
(
pht
(
'**bookmarks**'
)
)
->
setHelp
(
$help
)
;
}
protected
function
getWorkflowMarkerType
(
)
{
$api
=
$this
->
getRepositoryAPI
(
)
;
$marker_type
=
ArcanistMarkerRef
::
TYPE_BOOKMARK
;
if
(
!
$this
->
hasMarkerTypeSupport
(
$marker_type
)
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'The version control system ("%s") in the current working copy '
.
'does not support bookmarks.'
,
$api
->
getSourceControlSystemName
(
)
)
)
;
}
return
$marker_type
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Mar 23, 19:50 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114609
Default Alt Text
ArcanistBookmarksWorkflow.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment