@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 Pholio Edit pages to new UI

Summary: Updates the Pholio edit pages

Test Plan: Create mock, Edit mock

Reviewers: epriestley

Reviewed By: epriestley

Spies: Korvin

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

+2 -9
+2 -9
src/applications/pholio/controller/PholioMockEditController.php
··· 23 23 } 24 24 25 25 $title = pht('Edit Mock: %s', $mock->getName()); 26 - $header_icon = 'fa-pencil'; 27 26 28 27 $is_new = false; 29 28 $mock_images = $mock->getImages(); ··· 33 32 $mock = PholioMock::initializeNewMock($viewer); 34 33 35 34 $title = pht('Create Mock'); 36 - $header_icon = 'fa-plus-square'; 37 35 38 36 $is_new = true; 39 37 $files = array(); ··· 347 345 ->appendChild($submit); 348 346 349 347 $form_box = id(new PHUIObjectBoxView()) 350 - ->setHeaderText(pht('Mock')) 348 + ->setHeaderText($title) 351 349 ->setFormErrors($errors) 352 - ->setBackground(PHUIObjectBoxView::BLUE_PROPERTY) 350 + ->setBackground(PHUIObjectBoxView::WHITE_CONFIG) 353 351 ->setForm($form); 354 352 355 353 $crumbs = $this->buildApplicationCrumbs(); ··· 359 357 $crumbs->addTextCrumb($title); 360 358 $crumbs->setBorder(true); 361 359 362 - $header = id(new PHUIHeaderView()) 363 - ->setHeader($title) 364 - ->setHeaderIcon($header_icon); 365 - 366 360 $view = id(new PHUITwoColumnView()) 367 - ->setHeader($header) 368 361 ->setFooter($form_box); 369 362 370 363 return $this->newPage()