@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 Phlux edit UI

Summary: Updates

Test Plan: Phlux edit page

Reviewers: epriestley

Reviewed By: epriestley

Spies: Korvin

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

+2 -9
+2 -9
src/applications/phlux/controller/PhluxEditController.php
··· 154 154 if ($is_new) { 155 155 $title = pht('Create Variable'); 156 156 $crumbs->addTextCrumb($title, $request->getRequestURI()); 157 - $header_icon = 'fa-plus-square'; 158 157 } else { 159 158 $title = pht('Edit Variable: %s', $key); 160 - $header_icon = 'fa-pencil'; 161 159 $crumbs->addTextCrumb($title, $request->getRequestURI()); 162 160 } 163 161 $crumbs->setBorder(true); 164 162 165 163 $box = id(new PHUIObjectBoxView()) 166 - ->setHeaderText(pht('Variable')) 164 + ->setHeaderText($title) 167 165 ->setFormErrors($errors) 168 - ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 166 + ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 169 167 ->setForm($form); 170 168 171 - $header = id(new PHUIHeaderView()) 172 - ->setHeader($title) 173 - ->setHeaderIcon($header_icon); 174 - 175 169 $view = id(new PHUITwoColumnView()) 176 - ->setHeader($header) 177 170 ->setFooter(array( 178 171 $box, 179 172 ));