Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106044904
PhabricatorChatLogController.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
Fri, Mar 21, 20:10
Size
483 B
Mime Type
text/x-php
Expires
Sun, Mar 23, 20:10 (2 d)
Engine
blob
Format
Raw Data
Handle
25103010
Attached To
rPH Phabricator
PhabricatorChatLogController.php
View Options
<?php
abstract
class
PhabricatorChatLogController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
pht
(
'Chat Log'
));
$page
->
setBaseURI
(
'/chatlog/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
'#'
);
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment