mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 19:22:42 +01:00
39 lines
945 B
PHP
39 lines
945 B
PHP
|
<?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;
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|