Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F545391
PhabricatorSystemSelectViewAsController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorSystemSelectViewAsController.php
View Options
<?php
final
class
PhabricatorSystemSelectViewAsController
extends
PhabricatorController
{
public
function
shouldRequireLogin
()
{
return
false
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$v_engine
=
$request
->
getStr
(
'engine'
);
if
(
$request
->
isFormPost
())
{
$result
=
array
(
'engine'
=>
$v_engine
);
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$result
);
}
$engines
=
PhabricatorDocumentEngine
::
getAllEngines
();
$options
=
$request
->
getStrList
(
'options'
);
$options
=
array_fuse
(
$options
);
// TODO: This controller is a bit rough because it isn't really using the
// file ref to figure out which engines should work. See also T13513.
// Callers can pass a list of "options" to control which options are
// presented, at least.
$ref
=
new
PhabricatorDocumentRef
();
$map
=
array
();
foreach
(
$engines
as
$engine
)
{
$key
=
$engine
->
getDocumentEngineKey
();
if
(
$options
&&
!
isset
(
$options
[
$key
]))
{
continue
;
}
$label
=
$engine
->
getViewAsLabel
(
$ref
);
if
(!
strlen
(
$label
))
{
continue
;
}
$map
[
$key
]
=
$label
;
}
asort
(
$map
);
$map
=
array
(
''
=>
pht
(
'(Use Default)'
),
)
+
$map
;
$form
=
id
(
new
AphrontFormView
())
->
setViewer
(
$viewer
)
->
appendRemarkupInstructions
(
pht
(
'Choose a document engine to use.'
))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'View As'
))
->
setName
(
'engine'
)
->
setValue
(
$v_engine
)
->
setOptions
(
$map
));
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Select Document Engine'
))
->
appendForm
(
$form
)
->
addSubmitButton
(
pht
(
'Choose Engine'
))
->
addCancelButton
(
'/'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:49 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
116040
Default Alt Text
PhabricatorSystemSelectViewAsController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment