Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99758866
PhabricatorProfilePanel.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
Sun, Jan 26, 12:09
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jan 28, 12:09 (2 d)
Engine
blob
Format
Raw Data
Handle
23851598
Attached To
rPH Phabricator
PhabricatorProfilePanel.php
View Options
<?php
abstract
class
PhabricatorProfilePanel
extends
Phobject
{
private
$viewer
;
final
public
function
buildNavigationMenuItems
(
PhabricatorProfilePanelConfiguration
$config
)
{
return
$this
->
newNavigationMenuItems
(
$config
);
}
abstract
protected
function
newNavigationMenuItems
(
PhabricatorProfilePanelConfiguration
$config
);
public
function
getPanelTypeIcon
()
{
return
null
;
}
abstract
public
function
getPanelTypeName
();
abstract
public
function
getDisplayName
(
PhabricatorProfilePanelConfiguration
$config
);
public
function
buildEditEngineFields
(
PhabricatorProfilePanelConfiguration
$config
)
{
return
array
();
}
public
function
canAddToObject
(
$object
)
{
return
false
;
}
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
getPanelKey
()
{
return
$this
->
getPhobjectClassConstant
(
'PANELKEY'
);
}
final
public
static
function
getAllPanels
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getPanelKey'
)
->
execute
();
}
protected
function
newItem
()
{
return
new
PHUIListItemView
();
}
}
Event Timeline
Log In to Comment