Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109581744
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
Tue, Apr 22, 13:19
Size
683 B
Mime Type
text/x-php
Expires
Thu, Apr 24, 13:19 (2 d)
Engine
blob
Format
Raw Data
Handle
25723632
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