Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93937449
PhabricatorAuthLoginHandler.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
Mon, Dec 2, 16:08
Size
786 B
Mime Type
text/x-php
Expires
Wed, Dec 4, 16:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22727680
Attached To
rPH Phabricator
PhabricatorAuthLoginHandler.php
View Options
<?php
abstract
class
PhabricatorAuthLoginHandler
extends
Phobject
{
private
$request
;
private
$delegatingController
;
public
function
getAuthLoginHeaderContent
()
{
return
array
();
}
final
public
function
setDelegatingController
(
AphrontController
$controller
)
{
$this
->
delegatingController
=
$controller
;
return
$this
;
}
final
public
function
getDelegatingController
()
{
return
$this
->
delegatingController
;
}
final
public
function
setRequest
(
AphrontRequest
$request
)
{
$this
->
request
=
$request
;
return
$this
;
}
final
public
function
getRequest
()
{
return
$this
->
request
;
}
final
public
static
function
getAllHandlers
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
execute
();
}
}
Event Timeline
Log In to Comment