Page MenuHomePhorge

PhabricatorXHPASTViewFramesetController.php
No OneTemporary

Size
683 B
Referenced Files
None
Subscribers
None

PhabricatorXHPASTViewFramesetController.php

<?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}/")),
)));
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 8:33 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
119889
Default Alt Text
PhabricatorXHPASTViewFramesetController.php (683 B)

Event Timeline