2011-01-24 22:18:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
abstract class DifferentialController extends PhabricatorController {
|
|
|
|
|
|
|
|
public function buildStandardPageResponse($view, array $data) {
|
2011-01-26 00:19:06 +01:00
|
|
|
|
|
|
|
require_celerity_resource('differential-core-view-css');
|
|
|
|
|
2011-01-26 22:21:12 +01:00
|
|
|
$page = $this->buildStandardPageView();
|
2011-01-24 22:18:41 +01:00
|
|
|
|
|
|
|
$page->setApplicationName('Differential');
|
|
|
|
$page->setBaseURI('/differential/');
|
|
|
|
$page->setTitle(idx($data, 'title'));
|
|
|
|
$page->setGlyph("\xE2\x9A\x99");
|
|
|
|
$page->appendChild($view);
|
2011-02-05 21:20:18 +01:00
|
|
|
$page->setTabs(
|
|
|
|
array(
|
|
|
|
'revisions' => array(
|
|
|
|
'name' => 'Revisions',
|
|
|
|
'href' => '/differential/',
|
|
|
|
),
|
|
|
|
'create' => array(
|
|
|
|
'name' => 'Create Diff',
|
|
|
|
'href' => '/differential/diff/create/',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
idx($data, 'tab'));
|
2011-01-24 22:18:41 +01:00
|
|
|
|
|
|
|
$response = new AphrontWebpageResponse();
|
|
|
|
return $response->setContent($page->render());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|