Page MenuHomePhabricator

D19863.id47428.diff
No OneTemporary

D19863.id47428.diff

diff --git a/src/applications/phriction/controller/PhrictionController.php b/src/applications/phriction/controller/PhrictionController.php
--- a/src/applications/phriction/controller/PhrictionController.php
+++ b/src/applications/phriction/controller/PhrictionController.php
@@ -2,6 +2,14 @@
abstract class PhrictionController extends PhabricatorController {
+ private $showWelcomeDocument = false;
+
+ public function setShowWelcomeDocument($show_welcome) {
+ $this->showWelcomeDocument = $show_welcome;
+ return $this;
+
+ }
+
public function buildSideNavView($for_app = false) {
$user = $this->getRequest()->getUser();
@@ -37,12 +45,14 @@
->setIcon('fa-home'));
}
- $crumbs->addAction(
- id(new PHUIListItemView())
- ->setName(pht('New Document'))
- ->setHref('/phriction/new/?slug='.$this->getDocumentSlug())
- ->setWorkflow(true)
- ->setIcon('fa-plus-square'));
+ if (!$this->showWelcomeDocument) {
+ $crumbs->addAction(
+ id(new PHUIListItemView())
+ ->setName(pht('New Document'))
+ ->setHref('/phriction/new/?slug='.$this->getDocumentSlug())
+ ->setWorkflow(true)
+ ->setIcon('fa-plus-square'));
+ }
return $crumbs;
}
diff --git a/src/applications/phriction/controller/PhrictionDocumentController.php b/src/applications/phriction/controller/PhrictionDocumentController.php
--- a/src/applications/phriction/controller/PhrictionDocumentController.php
+++ b/src/applications/phriction/controller/PhrictionDocumentController.php
@@ -9,6 +9,7 @@
return true;
}
+
public function handleRequest(AphrontRequest $request) {
$viewer = $request->getViewer();
$this->slug = $request->getURIData('slug');
@@ -35,7 +36,6 @@
->needContent(true)
->executeOne();
if (!$document) {
-
$document = PhrictionDocument::initializeNewDocument($viewer, $slug);
if ($slug == '/') {
@@ -44,6 +44,7 @@
'keeping track of documents and their changes.');
$page_title = pht('Welcome');
$create_text = pht('Edit this Document');
+ $this->setShowWelcomeDocument(true);
} else {
$title = pht('No Document Here');

File Metadata

Mime Type
text/plain
Expires
Wed, Mar 26, 12:41 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7324857
Default Alt Text
D19863.id47428.diff (2 KB)

Event Timeline