@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 herald edit for new UI

Summary: Updates herald update, create

Test Plan: Create some rulez

Reviewers: epriestley

Reviewed By: epriestley

Spies: Korvin

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

+4 -11
+2 -6
src/applications/herald/controller/HeraldNewController.php
··· 194 194 ->addCancelButton($cancel_uri, $cancel_text)); 195 195 196 196 $form_box = id(new PHUIObjectBoxView()) 197 + ->setHeaderText($title) 197 198 ->setFormErrors($errors) 198 - ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 199 + ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 199 200 ->setForm($form); 200 201 201 202 $crumbs = $this ··· 203 204 ->addTextCrumb(pht('Create Rule')) 204 205 ->setBorder(true); 205 206 206 - $header = id(new PHUIHeaderView()) 207 - ->setHeader($title) 208 - ->setHeaderIcon('fa-plus-square'); 209 - 210 207 $view = id(new PHUITwoColumnView()) 211 - ->setHeader($header) 212 208 ->setFooter($form_box); 213 209 214 210 return $this->newPage()
+2 -5
src/applications/herald/controller/HeraldRuleController.php
··· 241 241 $icon = $rule->getID() ? 'fa-pencil' : 'fa-plus-square'; 242 242 243 243 $form_box = id(new PHUIObjectBoxView()) 244 + ->setHeaderText($title) 245 + ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 244 246 ->setFormErrors($errors) 245 247 ->setForm($form); 246 248 ··· 249 251 ->addTextCrumb($title) 250 252 ->setBorder(true); 251 253 252 - $header = id(new PHUIHeaderView()) 253 - ->setHeader($title) 254 - ->setHeaderIcon('fa-plus-square'); 255 - 256 254 $view = id(new PHUITwoColumnView()) 257 - ->setHeader($header) 258 255 ->setFooter($form_box); 259 256 260 257 return $this->newPage()