Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96184946
PhabricatorXHPASTViewFrameController.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
Mon, Dec 23, 13:57
Size
581 B
Mime Type
text/x-php
Expires
Wed, Dec 25, 13:57 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
23141066
Attached To
rPH Phabricator
PhabricatorXHPASTViewFrameController.php
View Options
<?php
final
class
PhabricatorXHPASTViewFrameController
extends
PhabricatorXHPASTViewController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$id
=
$this
->
id
;
return
$this
->
buildStandardPageResponse
(
phutil_tag
(
'iframe'
,
array
(
'src'
=>
'/xhpast/frameset/'
.
$id
.
'/'
,
'frameborder'
=>
'0'
,
'style'
=>
'width: 100%; height: 800px;'
,
''
)),
array
(
'title'
=>
'XHPAST View'
,
));
}
}
Event Timeline
Log In to Comment