-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathUserOptionGridView.class.php
More file actions
126 lines (116 loc) · 4.3 KB
/
UserOptionGridView.class.php
File metadata and controls
126 lines (116 loc) · 4.3 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
namespace wcf\system\gridView\admin;
use wcf\acp\form\UserOptionEditForm;
use wcf\data\DatabaseObject;
use wcf\data\user\option\UserOption;
use wcf\data\user\option\UserOptionList;
use wcf\event\gridView\admin\UserOptionGridViewInitialized;
use wcf\system\gridView\AbstractGridView;
use wcf\system\gridView\GridViewColumn;
use wcf\system\gridView\GridViewRowLink;
use wcf\system\gridView\renderer\DefaultColumnRenderer;
use wcf\system\gridView\renderer\NumberColumnRenderer;
use wcf\system\gridView\renderer\ObjectIdColumnRenderer;
use wcf\system\interaction\admin\UserOptionInteractions;
use wcf\system\interaction\bulk\admin\UserOptionBulkInteractions;
use wcf\system\interaction\Divider;
use wcf\system\interaction\EditInteraction;
use wcf\system\interaction\ToggleInteraction;
use wcf\system\WCF;
use wcf\util\StringUtil;
/**
* Grid view for the list of user options.
*
* @author Marcel Werk
* @copyright 2001-2024 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @since 6.2
*
* @extends AbstractGridView<UserOption, UserOptionList>
*/
final class UserOptionGridView extends AbstractGridView
{
public function __construct()
{
$this->addColumns([
GridViewColumn::for('optionID')
->label('wcf.global.objectID')
->renderer(new ObjectIdColumnRenderer())
->sortable(),
GridViewColumn::for('optionName')
->label('wcf.global.name')
->sortable()
->titleColumn()
->renderer([
new class extends DefaultColumnRenderer {
public function render(mixed $value, DatabaseObject $row): string
{
\assert($row instanceof UserOption);
return StringUtil::encodeHTML($row->getTitle());
}
}
]),
GridViewColumn::for('categoryName')
->label('wcf.global.category')
->sortable()
->renderer([
new class extends DefaultColumnRenderer {
public function render(mixed $value, DatabaseObject $row): string
{
\assert($row instanceof UserOption);
return StringUtil::encodeHTML(
WCF::getLanguage()->get('wcf.user.option.category.' . $row->categoryName)
);
}
}
]),
GridViewColumn::for('optionType')
->label('wcf.acp.user.option.optionType')
->sortable(),
GridViewColumn::for('showOrder')
->label('wcf.global.showOrder')
->sortable()
->renderer(new NumberColumnRenderer()),
]);
$provider = new UserOptionInteractions();
$provider->addInteractions([
new Divider(),
new EditInteraction(UserOptionEditForm::class)
]);
$this->setInteractionProvider($provider);
$this->setBulkInteractionProvider(new UserOptionBulkInteractions());
$this->addQuickInteraction(
new ToggleInteraction(
'enable',
'core/users/options/%s/enable',
'core/users/options/%s/disable'
)
);
$this->addRowLink(new GridViewRowLink(UserOptionEditForm::class));
$this->setDefaultSortField('showOrder');
}
#[\Override]
public function isAccessible(): bool
{
return WCF::getSession()->getPermission('admin.user.canManageUserOption');
}
#[\Override]
protected function createObjectList(): UserOptionList
{
$list = new UserOptionList();
$list->getConditionBuilder()->add(
"option_table.categoryName IN (
SELECT categoryName
FROM wcf" . WCF_N . "_user_option_category
WHERE parentCategoryName = ?
)",
['profile']
);
return $list;
}
#[\Override]
protected function getInitializedEvent(): UserOptionGridViewInitialized
{
return new UserOptionGridViewInitialized($this);
}
}