Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109486013
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
Tue, Apr 22, 04:15
Size
591 B
Mime Type
text/x-php
Expires
Thu, Apr 24, 04:15 (2 d)
Engine
blob
Format
Raw Data
Handle
25656253
Attached To
rPH Phabricator
PhabricatorXHPASTViewFrameController.php
View Options
<?php
final
class
PhabricatorXHPASTViewFrameController
extends
PhabricatorXHPASTViewController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$id
=
$request
->
getURIData
(
'id'
);
return
$this
->
buildStandardPageResponse
(
phutil_tag
(
'iframe'
,
array
(
'src'
=>
"/xhpast/frameset/{$id}/"
,
'frameborder'
=>
'0'
,
'style'
=>
'width: 100%; height: 800px;'
,
''
,
)),
array
(
'title'
=>
pht
(
'XHPAST View'
),
));
}
}
Event Timeline
Log In to Comment