Summary: The removes the sprite sheet 'icons' and replaces it with FontAwesome fonts. Test Plan: - Grep for SPRITE_ICONS and replace - Grep for sprite-icons and replace - Grep for PhabricatorActionList and choose all new icons - Grep for Crumbs and fix icons - Test/Replace PHUIList Icon support - Test/Replace ObjectList Icon support (foot, epoch, etc) - Browse as many pages as I could get to - Remove sprite-icons and move remarkup to own sheet - Review this diff in Differential Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9052
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
|
|
abstract class ManiphestController extends PhabricatorController {
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->buildSideNavView(true)->getMenu();
|
|
}
|
|
|
|
public function buildSideNavView($for_app = false) {
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$nav = new AphrontSideNavFilterView();
|
|
$nav->setBaseURI(new PhutilURI($this->getApplicationURI()));
|
|
|
|
if ($for_app) {
|
|
$nav->addFilter('create', pht('Create Task'));
|
|
}
|
|
|
|
id(new ManiphestTaskSearchEngine())
|
|
->setViewer($user)
|
|
->addNavigationItems($nav->getMenu());
|
|
|
|
if ($user->isLoggedIn()) {
|
|
// For now, don't give logged-out users access to reports.
|
|
$nav->addLabel(pht('Reports'));
|
|
$nav->addFilter('report', pht('Reports'));
|
|
}
|
|
|
|
$nav->selectFilter(null);
|
|
|
|
return $nav;
|
|
}
|
|
|
|
protected function buildApplicationCrumbs() {
|
|
$crumbs = parent::buildApplicationCrumbs();
|
|
|
|
$crumbs->addAction(
|
|
id(new PHUIListItemView())
|
|
->setName(pht('Create Task'))
|
|
->setHref($this->getApplicationURI('task/create/'))
|
|
->setIcon('fa-plus-square'));
|
|
|
|
return $crumbs;
|
|
}
|
|
|
|
protected function renderSingleTask(ManiphestTask $task) {
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
$phids = $task->getProjectPHIDs();
|
|
if ($task->getOwnerPHID()) {
|
|
$phids[] = $task->getOwnerPHID();
|
|
}
|
|
|
|
$handles = id(new PhabricatorHandleQuery())
|
|
->setViewer($user)
|
|
->withPHIDs($phids)
|
|
->execute();
|
|
|
|
$view = id(new ManiphestTaskListView())
|
|
->setUser($user)
|
|
->setShowSubpriorityControls(true)
|
|
->setShowBatchControls(true)
|
|
->setHandles($handles)
|
|
->setTasks(array($task));
|
|
|
|
return $view;
|
|
}
|
|
|
|
}
|