Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F474569
DivinerLegacyController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DivinerLegacyController.php
View Options
<?php
final
class
DivinerLegacyController
extends
DivinerController
{
public
function
processRequest
()
{
// TODO: Temporary implementation until Diviner is up and running inside
// Phabricator.
$links
=
array
(
'http://www.phabricator.com/docs/phabricator/'
=>
array
(
'name'
=>
'Phabricator Ducks'
,
'flavor'
=>
'Oops, that should say "Docs".'
,
),
'http://www.phabricator.com/docs/arcanist/'
=>
array
(
'name'
=>
'Arcanist Docs'
,
'flavor'
=>
'Words have never been so finely crafted.'
,
),
'http://www.phabricator.com/docs/libphutil/'
=>
array
(
'name'
=>
'libphutil Docs'
,
'flavor'
=>
'Soothing prose; seductive poetry.'
,
),
'http://www.phabricator.com/docs/javelin/'
=>
array
(
'name'
=>
'Javelin Docs'
,
'flavor'
=>
'O, what noble scribe hath penned these words?'
,
),
);
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$list
=
id
(
new
PhabricatorObjectItemListView
())
->
setUser
(
$viewer
);
foreach
(
$links
as
$href
=>
$link
)
{
$item
=
id
(
new
PhabricatorObjectItemView
())
->
setHref
(
$href
)
->
setHeader
(
$link
[
'name'
])
->
addAttribute
(
$link
[
'flavor'
]);
$list
->
addItem
(
$item
);
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
pht
(
'Documentation'
)));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$list
,
),
array
(
'title'
=>
pht
(
'Documentation'
),
'device'
=>
true
,
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 8:56 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
84634
Default Alt Text
DivinerLegacyController.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment