Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102234279
PhabricatorNotificationController.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
Tue, Feb 18, 14:08
Size
501 B
Mime Type
text/x-php
Expires
Thu, Feb 20, 14:08 (2 d)
Engine
blob
Format
Raw Data
Handle
24276739
Attached To
rPH Phabricator
PhabricatorNotificationController.php
View Options
<?php
abstract
class
PhabricatorNotificationController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
pht
(
'Notification'
));
$page
->
setBaseURI
(
'/notification/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
'!'
);
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment