Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106413628
PhabricatorAuthController.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, Mar 25, 13:38
Size
449 B
Mime Type
text/x-php
Expires
Thu, Mar 27, 13:38 (1 d, 14 h)
Engine
blob
Format
Raw Data
Handle
25109799
Attached To
rPH Phabricator
PhabricatorAuthController.php
View Options
<?php
abstract
class
PhabricatorAuthController
extends
PhabricatorController
{
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
pht
(
'Login'
));
$page
->
setBaseURI
(
'/login/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
appendChild
(
$view
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
}
Event Timeline
Log In to Comment