2011-02-21 03:41:23 +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 PhabricatorProjectController extends PhabricatorController {
|
|
|
|
|
|
|
|
public function buildStandardPageResponse($view, array $data) {
|
|
|
|
$page = $this->buildStandardPageView();
|
|
|
|
|
|
|
|
$page->setApplicationName('Project');
|
|
|
|
$page->setBaseURI('/project/');
|
|
|
|
$page->setTitle(idx($data, 'title'));
|
|
|
|
$page->setGlyph("\xE2\x98\xA3");
|
|
|
|
$page->appendChild($view);
|
|
|
|
|
|
|
|
$response = new AphrontWebpageResponse();
|
|
|
|
return $response->setContent($page->render());
|
|
|
|
}
|
|
|
|
|
2012-08-07 20:57:38 +02:00
|
|
|
protected function buildLocalNavigation(PhabricatorProject $project) {
|
|
|
|
$id = $project->getID();
|
|
|
|
|
|
|
|
$nav_view = new AphrontSideNavFilterView();
|
|
|
|
$uri = new PhutilURI('/project/view/'.$id.'/');
|
|
|
|
$nav_view->setBaseURI($uri);
|
|
|
|
|
|
|
|
$external_arrow = "\xE2\x86\x97";
|
|
|
|
$tasks_uri = '/maniphest/view/all/?projects='.$project->getPHID();
|
|
|
|
$slug = PhabricatorSlug::normalize($project->getName());
|
|
|
|
$phriction_uri = '/w/projects/'.$slug;
|
|
|
|
|
|
|
|
$edit_uri = '/project/edit/'.$id.'/';
|
|
|
|
$members_uri = '/project/members/'.$id.'/';
|
|
|
|
|
|
|
|
$nav_view->addFilter('dashboard', 'Dashboard');
|
|
|
|
$nav_view->addSpacer();
|
|
|
|
$nav_view->addFilter('feed', 'Feed');
|
|
|
|
$nav_view->addFilter(null, 'Tasks '.$external_arrow, $tasks_uri);
|
|
|
|
$nav_view->addFilter(null, 'Wiki '.$external_arrow, $phriction_uri);
|
|
|
|
$nav_view->addFilter('people', 'People');
|
|
|
|
$nav_view->addFilter('about', 'About');
|
|
|
|
$nav_view->addSpacer();
|
|
|
|
$nav_view->addFilter('edit', "Edit Project\xE2\x80\xA6", $edit_uri);
|
|
|
|
$nav_view->addFilter('members', "Edit Members\xE2\x80\xA6", $members_uri);
|
|
|
|
|
|
|
|
return $nav_view;
|
|
|
|
}
|
|
|
|
|
2011-02-21 03:41:23 +01:00
|
|
|
}
|