19 declare(strict_types=1);
40 ILIAS\
HTTP\Wrapper\WrapperFactory $http_wrapper,
52 $this->
lng->loadLanguageModule(
'mail');
53 $this->
lng->loadLanguageModule(
'search');
73 $this->back_target = $target;
78 $cmd = $this->
ctrl->getCmd();
80 $this->
ctrl->setReturn($this,
'');
83 case 'showSelectableUsers':
87 case 'sendMailToSelectedUsers':
99 throw new Exception(
'Unknown command ' . $cmd);
105 $this->tpl->loadStandardTemplate();
109 $this->tpl->setContent($tbl->getHTML());
117 $user_id = $assignment->getUserId();
121 $publicName =
$name[
'lastname'] .
', ' .
$name[
'firstname'];
123 $data[$user_id][
'user_id'] = $user_id;
124 $data[$user_id][
'login'] = $login;
125 $data[$user_id][
'name'] = $publicName;
128 $allowed_user_ids = $this->permission_helper->filterUserIds(
134 foreach (
$data as $usr_id => $entry) {
135 if (in_array($usr_id, $allowed_user_ids)) {
136 $ret[$usr_id] = $entry;
151 if ($this->http_wrapper->post()->has(
"user_ids")) {
152 $user_ids = $this->http_wrapper->post()->retrieve(
163 if (!count($user_ids)) {
164 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"no_checkbox"));
170 foreach ($user_ids as $usr_id) {
174 if (!count(array_filter($rcps))) {
175 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"no_checkbox"));
204 $context_array = array(
212 return $context_array;
218 if (is_null($back_target)) {
219 throw new LogicException(
"Can't redirect. No back target given.");
222 $this->
ctrl->redirectToURL($back_target);
227 $link = chr(13) . chr(10) . chr(13) . chr(10);
228 $link .= $this->
lng->txt(
'prg_mail_permanent_link');
229 $link .= chr(13) . chr(10) . chr(13) . chr(10);
231 return rawurlencode(base64_encode($link));
237 $assignment = array_shift($assignments);
244 $assignment = array_shift($assignments);
245 return (
int) $assignment->getRootId();
ILIAS HTTP Wrapper WrapperFactory $http_wrapper
setAssignments(array $assignments)
sendMailToSelectedUsers()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
ILIAS Refinery Factory $refinery
static _lookupName(int $a_user_id)
lookup user name
setBackTarget(string $target)
ilPRGPermissionsHelper $permission_helper
ilObjStudyProgrammeMembersGUI: ilStudyProgrammeRepositorySearchGUI ilObjStudyProgrammeMembersGUI: il...
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $tpl
static getRefIdFor(int $obj_id)
static _lookupType(int $id, bool $reference=false)
__construct(ilCtrl $ctrl, ilGlobalTemplateInterface $tpl, ilLanguage $lng, ilAccessHandler $access, ILIAS\HTTP\Wrapper\WrapperFactory $http_wrapper, ILIAS\Refinery\Factory $refinery, ilPRGPermissionsHelper $permission_helper)
static _lookupLogin(int $a_user_id)