Files
phabricator/src/applications/buildbot/controller/PhabricatorBuildbotController.php

42 lines
820 B
PHP
Raw Normal View History

<?php
/**
* @group buildbot
*/
final class PhabricatorBuildbotController extends PhabricatorController {
public function shouldAllowPublic() {
return true;
}
public function processRequest() {
$html = '
<script type="text/javascript">
window.location = "http://builder.blender.org/download";
</script>
See <a href="http://builder.blender.org/download">builder.blender.org</a>.';
$panel = new AphrontPanelView();
$panel->appendChild(phutil_safe_html($html));
$panel->setNoBackground();
$content = array(
$panel
);
$crumbs = $this->buildApplicationCrumbs();
return $this->buildApplicationPage(
array(
$crumbs,
$panel,
),
array(
'title' => 'Buildbot',
'device' => true,
));
}
}