2023-06-07 07:50:06 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/* Icinga DB Web | (c) 2023 Icinga GmbH | GPLv2 */
|
|
|
|
|
|
|
|
|
|
namespace Icinga\Module\Icingadb\Widget\ItemTable;
|
|
|
|
|
|
|
|
|
|
use Icinga\Module\Icingadb\Common\Links;
|
|
|
|
|
use Icinga\Module\Icingadb\Model\Servicegroup;
|
|
|
|
|
use ipl\Html\Attributes;
|
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
|
|
|
use ipl\Html\HtmlElement;
|
|
|
|
|
use ipl\Html\Text;
|
|
|
|
|
use ipl\I18n\Translation;
|
|
|
|
|
use ipl\Stdlib\Filter;
|
2023-08-09 08:25:44 -04:00
|
|
|
use ipl\Web\Common\BaseTableRowItem;
|
2023-06-07 07:50:06 -04:00
|
|
|
use ipl\Web\Widget\Link;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Servicegroup item of a servicegroup list. Represents one database row.
|
|
|
|
|
*
|
|
|
|
|
* @property Servicegroup $item
|
|
|
|
|
* @property ServicegroupTable $table
|
|
|
|
|
*/
|
|
|
|
|
abstract class BaseServiceGroupItem extends BaseTableRowItem
|
|
|
|
|
{
|
|
|
|
|
use Translation;
|
|
|
|
|
|
2023-08-09 08:25:44 -04:00
|
|
|
protected function init(): void
|
2023-06-07 07:50:06 -04:00
|
|
|
{
|
|
|
|
|
if (isset($this->table)) {
|
|
|
|
|
$this->table->addDetailFilterAttribute($this, Filter::equal('name', $this->item->name));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function createSubject(): BaseHtmlElement
|
|
|
|
|
{
|
|
|
|
|
return isset($this->table)
|
|
|
|
|
? new Link(
|
|
|
|
|
$this->item->display_name,
|
|
|
|
|
Links::servicegroup($this->item),
|
|
|
|
|
[
|
|
|
|
|
'class' => 'subject',
|
|
|
|
|
'title' => sprintf(
|
|
|
|
|
$this->translate('List all services in the group "%s"'),
|
|
|
|
|
$this->item->display_name
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
: new HtmlElement(
|
|
|
|
|
'span',
|
|
|
|
|
Attributes::create(['class' => 'subject']),
|
|
|
|
|
Text::create($this->item->display_name)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function createCaption(): BaseHtmlElement
|
|
|
|
|
{
|
|
|
|
|
return new HtmlElement('span', null, Text::create($this->item->name));
|
|
|
|
|
}
|
|
|
|
|
}
|