mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-21 04:50:55 +01:00
Make use of "Mnn" in Pholio more consistent
Summary: - Drop it from crumb. - Add it to pinboard. - Drop it from header. - Add it to title. Test Plan: looked at stuff Reviewers: chad, ljalonen Reviewed By: ljalonen CC: aran Differential Revision: https://secure.phabricator.com/D5068
This commit is contained in:
parent
b180c3a009
commit
88698bec0b
2 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,7 @@ final class PholioMockListController extends PholioController {
|
|||
foreach ($mocks as $mock) {
|
||||
$board->addItem(
|
||||
id(new PhabricatorPinboardItemView())
|
||||
->setHeader($mock->getName())
|
||||
->setHeader('M'.$mock->getID().' '.$mock->getName())
|
||||
->setURI('/M'.$mock->getID())
|
||||
->setImageURI($mock->getCoverFile()->getThumb220x165URI())
|
||||
->setImageSize(220, 165));
|
||||
|
|
|
@ -54,7 +54,7 @@ final class PholioMockViewController extends PholioController {
|
|||
}
|
||||
$engine->process();
|
||||
|
||||
$title = 'M'.$mock->getID().' '.$mock->getName();
|
||||
$title = $mock->getName();
|
||||
|
||||
$header = id(new PhabricatorHeaderView())
|
||||
->setHeader($title);
|
||||
|
@ -78,8 +78,8 @@ final class PholioMockViewController extends PholioController {
|
|||
$crumbs = $this->buildApplicationCrumbs($this->buildSideNav());
|
||||
$crumbs->addCrumb(
|
||||
id(new PhabricatorCrumbView())
|
||||
->setName($title)
|
||||
->setHref($this->getApplicationURI().'M'.$this->id));
|
||||
->setName('M'.$mock->getID())
|
||||
->setHref('/M'.$mock->getID()));
|
||||
|
||||
$content = array(
|
||||
$crumbs,
|
||||
|
@ -98,7 +98,7 @@ final class PholioMockViewController extends PholioController {
|
|||
return $this->buildApplicationPage(
|
||||
$content,
|
||||
array(
|
||||
'title' => $title,
|
||||
'title' => 'M'.$mock->getID().' '.$title,
|
||||
'device' => true,
|
||||
'pageObjects' => array($mock->getPHID()),
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue