Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93936762
PhabricatorDashboardInstall.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, 15:59
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Dec 4, 15:59 (2 d)
Engine
blob
Format
Raw Data
Handle
22725254
Attached To
rPH Phabricator
PhabricatorDashboardInstall.php
View Options
<?php
/**
* An install of a dashboard. Examples might be
* - the home page for a user
* - the profile page for a user
* - the profile page for a project
*/
final
class
PhabricatorDashboardInstall
extends
PhabricatorDashboardDAO
{
protected
$installerPHID
;
protected
$objectPHID
;
protected
$applicationClass
;
protected
$dashboardPHID
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'applicationClass'
=>
'text64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'applicationClass'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
static
function
getDashboard
(
PhabricatorUser
$viewer
,
$object_phid
,
$application_class
)
{
$dashboard
=
null
;
$dashboard_install
=
id
(
new
PhabricatorDashboardInstall
())
->
loadOneWhere
(
'objectPHID = %s AND applicationClass = %s'
,
$object_phid
,
$application_class
);
if
(
$dashboard_install
)
{
$dashboard
=
id
(
new
PhabricatorDashboardQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$dashboard_install
->
getDashboardPHID
()))
->
needPanels
(
true
)
->
executeOne
();
}
return
$dashboard
;
}
}
Event Timeline
Log In to Comment