Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120218118
PhabricatorXHPASTViewFramesetController.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
Wed, Jul 2, 17:41
Size
683 B
Mime Type
text/x-php
Expires
Fri, Jul 4, 17:41 (2 d)
Engine
blob
Format
Raw Data
Handle
27142250
Attached To
rPH Phabricator
PhabricatorXHPASTViewFramesetController.php
View Options
<?php
final
class
PhabricatorXHPASTViewFramesetController
extends
PhabricatorXHPASTViewController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$id
=
$request
->
getURIData
(
'id'
);
return
id
(
new
AphrontWebpageResponse
())
->
setFrameable
(
true
)
->
setContent
(
phutil_tag
(
'frameset'
,
array
(
'cols'
=>
'33%, 34%, 33%'
),
array
(
phutil_tag
(
'frame'
,
array
(
'src'
=>
"/xhpast/input/{$id}/"
)),
phutil_tag
(
'frame'
,
array
(
'src'
=>
"/xhpast/tree/{$id}/"
)),
phutil_tag
(
'frame'
,
array
(
'src'
=>
"/xhpast/stream/{$id}/"
)),
)));
}
}
Event Timeline
Log In to Comment