@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add an "Mxx" crumb on the Pholio edit page

Summary: This crumb, which is consistently available in other applications, is not currently available in Pholio.

Test Plan: Viewed an edit page, clicked the crumb.

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D9542

+8 -1
+4 -1
src/applications/pholio/controller/PholioMockEditController.php
··· 374 374 ->setForm($form); 375 375 376 376 $crumbs = $this->buildApplicationCrumbs(); 377 - $crumbs->addTextCrumb($title, $this->getApplicationURI()); 377 + if (!$is_new) { 378 + $crumbs->addTextCrumb($mock->getMonogram(), '/'.$mock->getMonogram()); 379 + } 380 + $crumbs->addTextCrumb($title); 378 381 379 382 $content = array( 380 383 $crumbs,
+4
src/applications/pholio/storage/PholioMock.php
··· 41 41 ->setViewPolicy($view_policy); 42 42 } 43 43 44 + public function getMonogram() { 45 + return 'M'.$this->getID(); 46 + } 47 + 44 48 public function getConfiguration() { 45 49 return array( 46 50 self::CONFIG_AUX_PHID => true,