Page MenuHomePhorge

PhabricatorXHPASTViewFramesetController.php
No OneTemporary

Size
702 B
Referenced Files
None
Subscribers
None

PhabricatorXHPASTViewFramesetController.php

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

Mime Type
text/x-php
Expires
Fri, May 2, 6:18 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
57179
Default Alt Text
PhabricatorXHPASTViewFramesetController.php (702 B)

Event Timeline