blob: f8c800d7cecf729f0d446b14910dc7075e610b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Widget\ItemList;
use Icinga\Module\Icingadb\Common\BaseTableRowItem;
use Icinga\Module\Icingadb\Common\Links;
use Icinga\Module\Icingadb\Common\NoSubjectLink;
use Icinga\Module\Icingadb\Model\Usergroup;
use ipl\Html\Attributes;
use ipl\Html\BaseHtmlElement;
use ipl\Html\HtmlDocument;
use ipl\Html\HtmlElement;
use ipl\Html\Text;
use ipl\Stdlib\Filter;
use ipl\Web\Widget\Link;
/**
* Usergroup item of a usergroup list. Represents one database row.
*
* @property Usergroup $item
* @property UsergroupList $list
*/
class UsergroupListItem extends BaseTableRowItem
{
use NoSubjectLink;
protected function init()
{
$this->setNoSubjectLink($this->list->getNoSubjectLink());
$this->list->addDetailFilterAttribute($this, Filter::equal('name', $this->item->name));
}
protected function assembleVisual(BaseHtmlElement $visual)
{
$visual->addHtml(new HtmlElement(
'div',
Attributes::create(['class' => 'usergroup-ball']),
Text::create($this->item->display_name[0])
));
}
protected function assembleTitle(BaseHtmlElement $title)
{
$title->addHtml(
$this->getNoSubjectLink()
? new HtmlElement(
'span',
Attributes::create(['class' => 'subject']),
Text::create($this->item->display_name)
)
: new Link($this->item->display_name, Links::usergroup($this->item), ['class' => 'subject']),
new HtmlElement('br'),
Text::create($this->item->name)
);
}
protected function assembleColumns(HtmlDocument $columns)
{
}
}
|