Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1516794
PhabricatorXHPASTViewFramesetController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
702 B
Referenced Files
None
Subscribers
None
PhabricatorXHPASTViewFramesetController.php
View Options
<?php
final
class
PhabricatorXHPASTViewFramesetController
extends
PhabricatorXHPASTViewController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$id
=
$this
->
id
;
$response
=
new
AphrontWebpageResponse
();
$response
->
setFrameable
(
true
);
$response
->
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}/"
)),
)));
return
$response
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jul 14, 12:25 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
341115
Default Alt Text
PhabricatorXHPASTViewFramesetController.php (702 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment