2015-09-04 15:25:19 +02:00
|
|
|
<?php
|
2016-02-08 15:41:00 +01:00
|
|
|
/* Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-09-04 15:25:19 +02:00
|
|
|
|
|
|
|
namespace Icinga\Application\Modules;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Container for module dashboards
|
|
|
|
*/
|
|
|
|
class DashboardContainer extends NavigationItemContainer
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This dashboard's dashlets
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dashlets;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this dashboard's dashlets
|
|
|
|
*
|
|
|
|
* @param array $dashlets
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setDashlets(array $dashlets)
|
|
|
|
{
|
|
|
|
$this->dashlets = $dashlets;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return this dashboard's dashlets
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDashlets()
|
|
|
|
{
|
|
|
|
return $this->dashlets ?: array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new dashlet
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param string $url
|
2019-09-09 14:42:16 +02:00
|
|
|
* @param int $priority
|
2015-09-04 15:25:19 +02:00
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2019-09-09 14:42:16 +02:00
|
|
|
public function add($name, $url, $priority = null)
|
2015-09-04 15:25:19 +02:00
|
|
|
{
|
2019-09-09 14:42:16 +02:00
|
|
|
$this->dashlets[$name] = [
|
|
|
|
'url' => $url,
|
|
|
|
'priority' => $priority
|
|
|
|
];
|
2015-09-04 15:25:19 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|