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

Update phpast for new UI

Summary: New UI for phpast

Test Plan: Open page, doesn't crash

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+15 -4
+15 -4
src/applications/phpast/controller/PhabricatorXHPASTViewRunController.php
··· 47 47 48 48 $form_box = id(new PHUIObjectBoxView()) 49 49 ->setHeaderText(pht('Generate XHP AST')) 50 + ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 50 51 ->setForm($form); 51 52 52 - return $this->buildApplicationPage( 53 - $form_box, 54 - array( 55 - 'title' => pht('XHPAST View'), 53 + $title = pht('XHPAST View'); 54 + $header = id(new PHUIHeaderView()) 55 + ->setHeader($title) 56 + ->setHeaderIcon('fa-ambulance'); 57 + 58 + $view = id(new PHUITwoColumnView()) 59 + ->setHeader($header) 60 + ->setFooter(array( 61 + $form_box, 56 62 )); 63 + 64 + return $this->newPage() 65 + ->setTitle($title) 66 + ->appendChild($view); 67 + 57 68 } 58 69 59 70 }