2011-01-16 22:51:39 +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.
|
|
|
|
*/
|
|
|
|
|
2011-01-23 02:48:55 +01:00
|
|
|
class PhabricatorStandardPageView extends AphrontPageView {
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
private $baseURI;
|
|
|
|
private $applicationName;
|
|
|
|
private $tabs = array();
|
|
|
|
private $selectedTab;
|
|
|
|
private $glyph;
|
2011-01-25 18:59:31 +01:00
|
|
|
private $bodyContent;
|
2011-01-26 22:21:12 +01:00
|
|
|
private $request;
|
|
|
|
|
|
|
|
public function setRequest($request) {
|
|
|
|
$this->request = $request;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getRequest() {
|
|
|
|
return $this->request;
|
|
|
|
}
|
2011-01-16 22:51:39 +01:00
|
|
|
|
|
|
|
public function setApplicationName($application_name) {
|
|
|
|
$this->applicationName = $application_name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getApplicationName() {
|
|
|
|
return $this->applicationName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setBaseURI($base_uri) {
|
|
|
|
$this->baseURI = $base_uri;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBaseURI() {
|
|
|
|
return $this->baseURI;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTabs(array $tabs, $selected_tab) {
|
|
|
|
$this->tabs = $tabs;
|
|
|
|
$this->selectedTab = $selected_tab;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitle() {
|
|
|
|
return $this->getGlyph().' '.parent::getTitle();
|
|
|
|
}
|
|
|
|
|
2011-01-25 20:31:40 +01:00
|
|
|
|
2011-01-25 18:59:31 +01:00
|
|
|
protected function willRenderPage() {
|
|
|
|
require_celerity_resource('phabricator-core-css');
|
2011-01-25 20:31:40 +01:00
|
|
|
require_celerity_resource('phabricator-core-buttons-css');
|
|
|
|
require_celerity_resource('phabricator-standard-page-view');
|
|
|
|
|
2011-01-25 20:57:47 +01:00
|
|
|
require_celerity_resource('javelin-lib-dev');
|
|
|
|
|
2011-01-25 18:59:31 +01:00
|
|
|
$this->bodyContent = $this->renderChildren();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
protected function getHead() {
|
2011-01-25 18:59:31 +01:00
|
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
2011-01-16 22:51:39 +01:00
|
|
|
return
|
2011-01-25 18:59:31 +01:00
|
|
|
$response->renderResourcesOfType('css').
|
2011-01-25 17:18:27 +01:00
|
|
|
'<script type="text/javascript">window.__DEV__=1;</script>'.
|
|
|
|
'<script type="text/javascript" src="/rsrc/js/javelin/init.dev.js">'.
|
|
|
|
'</script>';
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setGlyph($glyph) {
|
|
|
|
$this->glyph = $glyph;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGlyph() {
|
|
|
|
return $this->glyph;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getBody() {
|
|
|
|
|
|
|
|
$tabs = array();
|
|
|
|
foreach ($this->tabs as $name => $tab) {
|
|
|
|
$tabs[] = phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => idx($tab, 'href'),
|
|
|
|
'class' => ($name == $this->selectedTab)
|
2011-01-25 20:31:40 +01:00
|
|
|
? 'phabricator-selected-tab'
|
2011-01-16 22:51:39 +01:00
|
|
|
: null,
|
|
|
|
),
|
|
|
|
phutil_escape_html(idx($tab, 'name')));
|
|
|
|
}
|
|
|
|
$tabs = implode('', $tabs);
|
|
|
|
if ($tabs) {
|
2011-01-25 20:31:40 +01:00
|
|
|
$tabs = '<span class="phabricator-head-tabs">'.$tabs.'</span>';
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
|
2011-01-26 22:21:12 +01:00
|
|
|
$login_stuff = null;
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
if ($user->getPHID()) {
|
|
|
|
$login_stuff = 'Logged in as '.phutil_escape_html($user->getUsername());
|
|
|
|
}
|
|
|
|
|
2011-01-16 22:51:39 +01:00
|
|
|
return
|
2011-01-25 20:31:40 +01:00
|
|
|
'<div class="phabricator-standard-page">'.
|
|
|
|
'<div class="phabricator-standard-header">'.
|
2011-01-26 22:21:12 +01:00
|
|
|
'<div class="phabricator-login-details">'.
|
|
|
|
$login_stuff.
|
|
|
|
'</div>'.
|
2011-01-23 02:45:28 +01:00
|
|
|
'<a href="/">Phabricator</a> '.
|
2011-01-16 22:51:39 +01:00
|
|
|
phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->getBaseURI(),
|
2011-01-25 20:31:40 +01:00
|
|
|
'class' => 'phabricator-head-appname',
|
2011-01-16 22:51:39 +01:00
|
|
|
),
|
|
|
|
phutil_escape_html($this->getApplicationName())).
|
|
|
|
$tabs.
|
|
|
|
'</div>'.
|
2011-01-25 18:59:31 +01:00
|
|
|
$this->bodyContent.
|
2011-01-16 22:51:39 +01:00
|
|
|
'<div style="clear: both;"></div>'.
|
|
|
|
'</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getTail() {
|
2011-01-25 18:59:31 +01:00
|
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
|
|
|
return
|
|
|
|
$response->renderResourcesOfType('js').
|
2011-01-25 20:57:47 +01:00
|
|
|
$response->renderHTMLFooter();
|
2011-01-16 22:51:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|