Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109890591
PhabricatorGuideWelcomeModule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 23, 20:56
Size
895 B
Mime Type
text/x-php
Expires
Fri, Apr 25, 20:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25767152
Attached To
rPH Phabricator
PhabricatorGuideWelcomeModule.php
View Options
<?php
final
class
PhabricatorGuideWelcomeModule
extends
PhabricatorGuideModule
{
public
function
getModuleKey
()
{
return
'welcome'
;
}
public
function
getModuleName
()
{
return
pht
(
'Welcome'
);
}
public
function
getModulePosition
()
{
return
10
;
}
public
function
renderModuleStatus
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$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**.'
);
$content
=
new
PHUIRemarkupView
(
$viewer
,
$content
);
return
id
(
new
PHUIDocumentViewPro
())
->
appendChild
(
$content
);
}
}
Event Timeline
Log In to Comment