19 declare(strict_types=1);
46 public function __construct(
bool $a_is_personal_workspace =
false)
49 $this->is_in_wsp = $a_is_personal_workspace;
53 if ($this->is_in_wsp) {
59 public function setType(
int $a_type): void
61 $this->type = $a_type;
71 $this->sender = $a_usr_id;
85 return $this->subject = $a_subject;
93 protected function setBody(
string $a_body): void
95 $this->body = $a_body;
100 return $this->body .= $a_body;
110 $this->recipients = $a_rcp;
120 $this->attachments = $a_att;
130 $this->lang_modules = $a_modules;
143 if (count($this->lang_modules)) {
144 foreach ($this->lang_modules as $lmod) {
155 $this->
language->loadLanguageModule(
'mail');
157 if (count($this->lang_modules)) {
158 foreach ($this->lang_modules as $lmod) {
159 $this->
language->loadLanguageModule($lmod);
176 return str_replace(
'\n',
"\n", $this->
getLanguage()->txt($a_keyword));
181 if (!$this->is_in_wsp) {
182 $this->ref_id = $a_id;
185 $this->ref_id = $a_id;
186 $obj_id = $this->wsp_tree->lookupObjectId($this->
getRefId());
204 $this->obj_id = $a_obj_id;
215 $this->additional_info = $a_info;
235 public function sendMail(array $a_rcp,
bool $a_parse_recipients =
true): void
238 foreach ($a_rcp as $rcp) {
239 if ($a_parse_recipients) {
242 $recipients[] = $rcp;
245 $recipients = implode(
',', $recipients);
266 return is_object($this->mail) ? $this->mail : $this->
initMail();
272 if (!$this->is_in_wsp) {
283 return (
$name[
'title'] ?
$name[
'title'] .
' ' :
'') .
284 ($name[
'firstname'] ? $name[
'firstname'] .
' ' :
'') .
285 ($name[
'lastname'] ? $name[
'lastname'] .
' ' :
'');
288 protected function isRefIdAccessible(
int $a_user_id,
int $a_ref_id,
string $a_permission =
"read"): bool
294 if (!$this->is_in_wsp) {
295 if (trim($a_permission) &&
296 !$DIC->access()->checkAccessOfUser(
306 trim($a_permission) &&
307 !$this->wsp_access_handler->checkAccessOfUser(
324 return "----------------------------------------\n";
appendBody(string $a_body)
static getLogger(string $a_component_id)
Get component logger.
sendMail(array $a_rcp, bool $a_parse_recipients=true)
static getGotoLink(int $a_node_id, int $a_obj_id, string $a_additional="")
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initLanguageByIso2Code(string $a_code='')
loadLanguageModule(string $a_module)
Load language module.
static subStr(string $a_str, int $a_start, ?int $a_length=null)
const SUBJECT_TITLE_LENGTH
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
userToString(int $a_usr_id)
getAdditionalInformation()
static strLen(string $a_string)
Base class for course/group mail notifications.
static _lookupTitle(int $obj_id)
ilWorkspaceAccessHandler $wsp_access_handler
static _getLanguageOfUser(int $a_usr_id)
Get language object of user.
setLangModules(array $a_modules)
getUserLanguage(int $a_usr_id)
initLanguage(int $a_usr_id)
ilWorkspaceTree $wsp_tree
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static _getLanguage(string $a_lang_key='')
Get language object.
getLanguageText(string $a_keyword)
__construct(bool $a_is_personal_workspace=false)
isRefIdAccessible(int $a_user_id, int $a_ref_id, string $a_permission="read")
setRecipients(array $a_rcp)
getObjectTitle(bool $a_shorten=false)
createPermanentLink(array $a_params=[], string $a_append='')
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
setSubject(string $a_subject)
static _lookupType(int $id, bool $reference=false)
setLanguage(ilLanguage $a_language)
setAdditionalInformation(array $a_info)
setAttachments(array $a_att)
static _lookupLogin(int $a_user_id)