mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-28 10:09:33 -05:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Businessprocess\Widget;
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
|
|
class StateBadge extends BaseHtmlElement
|
|
{
|
|
protected $defaultAttributes = ['class' => 'state-badge'];
|
|
|
|
/** @var mixed Badge content */
|
|
protected $content;
|
|
|
|
/** @var bool Whether the state is handled */
|
|
protected $isHandled;
|
|
|
|
/** @var string Textual representation of a state */
|
|
protected $state;
|
|
|
|
/**
|
|
* Create a new state badge
|
|
*
|
|
* @param mixed $content Content of the badge
|
|
* @param string $state Textual representation of a state
|
|
* @param bool $isHandled True if state is handled
|
|
*/
|
|
public function __construct($content, $state, $isHandled = false, $group = false)
|
|
{
|
|
$this->content = $content;
|
|
$this->isHandled = $isHandled;
|
|
$this->state = strtolower($state);
|
|
}
|
|
|
|
protected function assemble()
|
|
{
|
|
$this->setTag('span');
|
|
|
|
$class = "state-{$this->state}";
|
|
if ($this->isHandled) {
|
|
$class .= ' handled';
|
|
}
|
|
|
|
$this->addAttributes(['class' => $class]);
|
|
|
|
$this->add($this->content);
|
|
}
|
|
}
|