Page MenuHomec4science

PhabricatorXHPASTViewFrameController.php
No OneTemporary

File Metadata

Created
Tue, Apr 22, 04:15

PhabricatorXHPASTViewFrameController.php

<?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