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

Modernize Nuance Console page

Summary: Uses UI like Alamanc Console page

Test Plan: Review Console page, click on items.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+13 -7
+13 -7
src/applications/nuance/controller/NuanceConsoleController.php
··· 35 35 36 36 $crumbs = $this->buildApplicationCrumbs(); 37 37 $crumbs->addTextCrumb(pht('Console')); 38 + $crumbs->setBorder(true); 38 39 39 40 $box = id(new PHUIObjectBoxView()) 40 - ->setHeaderText(pht('Console')) 41 41 ->setObjectList($menu); 42 42 43 - return $this->buildApplicationPage( 44 - array( 45 - $crumbs, 43 + $header = id(new PHUIHeaderView()) 44 + ->setHeader(pht('Nuance Console')) 45 + ->setHeaderIcon('fa-fax'); 46 + 47 + $view = id(new PHUITwoColumnView()) 48 + ->setHeader($header) 49 + ->setFooter(array( 46 50 $box, 47 - ), 48 - array( 49 - 'title' => pht('Nuance Console'), 50 51 )); 52 + 53 + return $this->newPage() 54 + ->setTitle(pht('Nuance Console')) 55 + ->setCrumbs($crumbs) 56 + ->appendChild($view); 51 57 } 52 58 53 59 }