Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120221708
NuanceItemViewController.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, Jul 2, 18:15
Size
567 B
Mime Type
text/x-php
Expires
Fri, Jul 4, 18:15 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
27097509
Attached To
rPH Phabricator
NuanceItemViewController.php
View Options
<?php
final
class
NuanceItemViewController
extends
NuanceController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$item
=
id
(
new
NuanceItemQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
executeOne
();
if
(!
$item
)
{
return
new
Aphront404Response
();
}
$crumbs
=
$this
->
buildApplicationCrumbs
();
$title
=
'TODO'
;
return
$this
->
buildApplicationPage
(
$crumbs
,
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment