File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
wcfsetup/install/files/lib Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace wcf \event \gridView \admin ;
4+
5+ use wcf \event \IPsr14Event ;
6+ use wcf \system \gridView \admin \UserGroupGridView ;
7+
8+ /**
9+ * Indicates that the user group grid view has been initialized.
10+ *
11+ * @author Olaf Braun
12+ * @copyright 2001-2025 WoltLab GmbH
13+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
14+ * @since 6.2
15+ */
16+ final class UserGroupGridViewInitialized implements IPsr14Event
17+ {
18+ public function __construct (public readonly UserGroupGridView $ param )
19+ {
20+ }
21+ }
Original file line number Diff line number Diff line change 88use wcf \data \DatabaseObjectList ;
99use wcf \data \user \group \I18nUserGroupList ;
1010use wcf \data \user \group \UserGroup ;
11+ use wcf \event \gridView \admin \UserGroupGridViewInitialized ;
12+ use wcf \event \IPsr14Event ;
1113use wcf \system \gridView \AbstractGridView ;
1214use wcf \system \gridView \filter \I18nTextFilter ;
1315use wcf \system \gridView \filter \NumericFilter ;
@@ -137,4 +139,10 @@ protected function createObjectList(): DatabaseObjectList
137139
138140 return $ list ;
139141 }
142+
143+ #[\Override]
144+ protected function getInitializedEvent (): ?IPsr14Event
145+ {
146+ return new UserGroupGridViewInitialized ($ this );
147+ }
140148}
You can’t perform that action at this time.
0 commit comments