@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.

Removed unused buildApplicationPage method from PhabricatorController

Summary: Getting rid of some code! This method has no callsites so it should be safe to remove completely. Ref T9690

Test Plan: Removed method and clicked around to make sure nothing broke.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: yelirekim, epriestley

Maniphest Tasks: T9690

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

Josh Cox 2201c65e 3c62be69

-40
-40
src/applications/base/controller/PhabricatorController.php
··· 575 575 return $page->produceAphrontResponse(); 576 576 } 577 577 578 - 579 - /** 580 - * DEPRECATED. Use @{method:newPage}. 581 - */ 582 - public function buildApplicationPage($view, array $options) { 583 - $page = $this->newPage(); 584 - 585 - $title = PhabricatorEnv::getEnvConfig('phabricator.serious-business') ? 586 - 'Phabricator' : 587 - pht('Bacon Ice Cream for Breakfast'); 588 - 589 - $page->setTitle(idx($options, 'title', $title)); 590 - 591 - if (idx($options, 'class')) { 592 - $page->addClass($options['class']); 593 - } 594 - 595 - if (!($view instanceof AphrontSideNavFilterView)) { 596 - $nav = new AphrontSideNavFilterView(); 597 - $nav->appendChild($view); 598 - $view = $nav; 599 - } 600 - 601 - $page->appendChild($view); 602 - 603 - $object_phids = idx($options, 'pageObjects', array()); 604 - if ($object_phids) { 605 - $page->setPageObjectPHIDs($object_phids); 606 - } 607 - 608 - if (!idx($options, 'device', true)) { 609 - $page->setDeviceReady(false); 610 - } 611 - 612 - $page->setShowFooter(idx($options, 'showFooter', true)); 613 - $page->setShowChrome(idx($options, 'chrome', true)); 614 - 615 - return $page->produceAphrontResponse(); 616 - } 617 - 618 578 }