Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102074240
DivinerMainController.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
Sun, Feb 16, 20:35
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Feb 18, 20:35 (2 d)
Engine
blob
Format
Raw Data
Handle
24275895
Attached To
rPH Phabricator
DivinerMainController.php
View Options
<?php
final
class
DivinerMainController
extends
DivinerController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$books
=
id
(
new
DivinerBookQuery
())
->
setViewer
(
$viewer
)
->
execute
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Books'
));
$search_icon
=
id
(
new
PHUIIconView
())
->
setIconFont
(
'fa-search'
);
$query_button
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setHref
(
$this
->
getApplicationURI
(
'query/'
))
->
setText
(
pht
(
'Advanced Search'
))
->
setIcon
(
$search_icon
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Documentation Books'
))
->
addActionLink
(
$query_button
);
$document
=
new
PHUIDocumentView
();
$document
->
setHeader
(
$header
);
$document
->
setFontKit
(
PHUIDocumentView
::
FONT_SOURCE_SANS
);
if
(
$books
)
{
$books
=
msort
(
$books
,
'getTitle'
);
$list
=
array
();
foreach
(
$books
as
$book
)
{
$item
=
id
(
new
DivinerBookItemView
())
->
setTitle
(
$book
->
getTitle
())
->
setHref
(
'/book/'
.
$book
->
getName
().
'/'
)
->
setSubtitle
(
$book
->
getPreface
());
$list
[]
=
$item
;
}
$list
=
id
(
new
PHUIBoxView
())
->
addPadding
(
PHUI
::
PADDING_LARGE_LEFT
)
->
addPadding
(
PHUI
::
PADDING_LARGE_RIGHT
)
->
addPadding
(
PHUI
::
PADDING_SMALL_TOP
)
->
addPadding
(
PHUI
::
PADDING_SMALL_BOTTOM
)
->
appendChild
(
$list
);
$document
->
appendChild
(
$list
);
}
else
{
$text
=
pht
(
"(NOTE) **Looking for Phabricator documentation?** If you're looking "
.
"for help and information about Phabricator, you can "
.
"[[ https://secure.phabricator.com/diviner/ | browse the public "
.
"Phabricator documentation ]] on the live site.
\n\n
"
.
"Diviner is the documentation generator used to build the Phabricator "
.
"documentation.
\n\n
"
.
"You haven't generated any Diviner documentation books yet, so "
.
"there's nothing to show here. If you'd like to generate your own "
.
"local copy of the Phabricator documentation and have it appear "
.
"here, run this command:
\n\n
"
.
" phabricator/ $ ./bin/diviner generate
\n\n
"
.
"Right now, Diviner isn't very useful for generating documentation "
.
"for projects other than Phabricator. If you're interested in using "
.
"it in your own projects, leave feedback for us on "
.
"[[ https://secure.phabricator.com/T4558 | T4558 ]]."
);
$text
=
PhabricatorMarkupEngine
::
renderOneObject
(
id
(
new
PhabricatorMarkupOneOff
())->
setContent
(
$text
),
'default'
,
$viewer
);
$document
->
appendChild
(
$text
);
}
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$document
,
),
array
(
'title'
=>
pht
(
'Documentation Books'
),
'device'
=>
true
,
'fonts'
=>
true
,
));
}
}
Event Timeline
Log In to Comment