mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 00:18:21 +02:00
Summary: Ref T11132. Will work on CSS tomorrow, but wanted to rough in the UI Steps to get guidance. Not sure what you have in mind for the "app" part, if you want to explain it and I build or you build. Test Plan: Visit each page and click on links. Very rough and unfinished. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T11132 Differential Revision: https://secure.phabricator.com/D16419
53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorGuideWelcomeController
|
|
extends PhabricatorGuideController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return false;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
require_celerity_resource('guides-app-css');
|
|
$viewer = $request->getViewer();
|
|
|
|
$title = pht('Welcome to Phabricator');
|
|
|
|
$nav = $this->buildSideNavView();
|
|
$nav->selectFilter('/');
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader($title)
|
|
->setProfileHeader(true);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs()
|
|
->addTextCrumb(pht('Welcome'));
|
|
|
|
$content = id(new PHUIDocumentViewPro())
|
|
->appendChild($this->getGuideContent($viewer));
|
|
|
|
$view = id(new PHUICMSView())
|
|
->setCrumbs($crumbs)
|
|
->setNavigation($nav)
|
|
->setHeader($header)
|
|
->setContent($content);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->addClass('phui-cms-body')
|
|
->appendChild($view);
|
|
|
|
}
|
|
|
|
private function getGuideContent($viewer) {
|
|
|
|
$content = pht(
|
|
'You have successfully installed Phabricator. These next guides will '.
|
|
'take you through configuration and new user orientation. '.
|
|
'These steps are optional, and you can go through them in any order. '.
|
|
'If you want to get back to this guide later on, you can find it in '.
|
|
'the **Config** application under **Welcome Guide**.');
|
|
|
|
return new PHUIRemarkupView($viewer, $content);
|
|
}
|
|
}
|