19 declare(strict_types=1);
41 private readonly \ILIAS\HTTP\Services
$http;
50 $this->
ctrl = $DIC->ctrl();
51 $this->tpl = $DIC->ui()->mainTemplate();
52 $this->
lng = $DIC->language();
53 $this->
access = $DIC->access();
54 $this->
tabs = $DIC->tabs();
55 $this->error = $DIC[
'ilErr'];
56 $this->
user = $DIC->user();
57 $this->
toolbar = $DIC->toolbar();
59 $this->
tabs->activateTab(
'frm_moderators');
60 $this->
lng->loadLanguageModule(
'search');
61 $this->http_wrapper = $DIC->http()->wrapper();
62 $this->
http = $DIC->http();
64 $this->ui_renderer = $DIC->ui()->renderer();
65 $this->ui_factory = $DIC->ui()->factory();
67 if ($this->http_wrapper->query()->has(
'ref_id')) {
68 $this->ref_id = $this->http_wrapper->query()->retrieve(
74 if (!$this->
access->checkAccess(
'write',
'', $this->ref_id)) {
75 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
83 $next_class = $this->
ctrl->getNextClass($this) ??
'';
84 $cmd = $this->
ctrl->getCmd() ??
'';
86 switch (strtolower($next_class)) {
87 case strtolower(ilRepositorySearchGUI::class):
89 $rep_search->setCallback($this,
'addModerator');
90 $this->
ctrl->setReturn($this,
'showModerators');
91 $this->
ctrl->forwardCommand($rep_search);
96 $cmd =
'showModerators';
106 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_moderators_select_one'));
112 $frm_noti_type = $objFrmProps->getNotificationType();
115 $this->oForumModerators->addModeratorRole((
int) $user_id);
116 if ($isCrsGrp && $frm_noti_type !==
'default') {
118 $tmp_frm_noti->setUserId((
int) $user_id);
119 $tmp_frm_noti->setUserIdNoti($this->
user->getId());
120 $tmp_frm_noti->setUserToggle($objFrmProps->getUserToggleNoti());
121 $tmp_frm_noti->setAdminForce($objFrmProps->getAdminForceNoti());
123 $tmp_frm_noti->insertAdminForce();
127 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_moderator_role_added_successfully'),
true);
128 $this->
ctrl->redirect($this,
'showModerators');
134 if ($this->http_wrapper->query()->has(
'frm_moderators_table_usr_ids')) {
135 $usr_ids = $this->http_wrapper->query()->retrieve(
136 'frm_moderators_table_usr_ids',
141 if (!isset($usr_ids) || !is_array($usr_ids)) {
142 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_moderators_select_at_least_one'));
143 $this->
ctrl->redirect($this,
'showModerators');
146 $entries = $this->oForumModerators->getCurrentModerators();
147 if (count($usr_ids) === count($entries)) {
148 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'frm_at_least_one_moderator'),
true);
149 $this->
ctrl->redirect($this,
'showModerators');
155 $frm_noti_type = $objFrmProps->getNotificationType();
157 foreach ($usr_ids as $usr_id) {
158 $this->oForumModerators->detachModeratorRole((
int) $usr_id);
162 $tmp_frm_noti->setUserId((
int) $usr_id);
165 $tmp_frm_noti->deleteAdminForce();
169 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'frm_moderators_detached_role_successfully'),
true);
170 $this->
ctrl->redirect($this,
'showModerators');
179 'auto_complete_name' => $this->
lng->txt(
'user'),
180 'submit_name' => $this->
lng->txt(
'add'),
181 'add_search' =>
true,
182 'add_from_container' => $this->oForumModerators->getRefId()
185 if ($this->http_wrapper->query()->has(
'ref_id')) {
186 $this->ref_id = $this->http_wrapper->query()->retrieve(
192 $tbl = new \ILIAS\Forum\Moderation\ForumModeratorsTable(
193 $this->oForumModerators,
200 $this->tpl->setContent($this->ui_renderer->render($tbl->getComponent()));
205 $action = $this->http_wrapper->query()->retrieve(
206 'frm_moderators_table_action',
208 $this->refinery->kindlyTo()->string(),
214 default => $this->
ctrl->redirect($this,
'showModerators'),
readonly ilGlobalTemplateInterface $tpl
readonly ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS UI Renderer $ui_renderer
readonly ilToolbarGUI $toolbar
readonly ILIAS HTTP Wrapper WrapperFactory $http_wrapper
readonly ilErrorHandling $error
Class ilForumNotification.
readonly ilCtrlInterface $ctrl
static _lookupObjId(int $ref_id)
readonly ilAccessHandler $access
static getInstance(int $a_obj_id=0)
readonly ILIAS HTTP Services $http
readonly ilForumModerators $oForumModerators
static http()
Fetches the global http state from ILIAS.
readonly ILIAS UI Factory $ui_factory
static _isParentNodeGrpCrs(int $a_ref_id)
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
__construct(Container $dic, ilPlugin $plugin)
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.