1 <?php declare(strict_types=1);
8 require_once
'./Services/Language/classes/class.ilLanguageFactory.php';
55 if (null === $usernameHelper) {
58 $this->userHelper = $usernameHelper;
71 return $this->
language ? $this->
language : $this->languageHelper->getCurrentLanguage();
78 abstract public function getId() : string;
84 abstract public function getTitle() : string;
98 'mail_salutation' => [
99 'placeholder' =>
'MAIL_SALUTATION',
100 'label' => $this->
getLanguage()->txt(
'mail_nacc_salutation')
103 'placeholder' =>
'FIRST_NAME',
107 'placeholder' =>
'LAST_NAME',
111 'placeholder' =>
'LOGIN',
112 'label' => $this->
getLanguage()->txt(
'mail_nacc_login')
115 'placeholder' =>
'TITLE',
116 'label' => $this->
getLanguage()->txt(
'mail_nacc_title'),
117 'supportsCondition' => true
119 'firstname_last_name_superior' => [
120 'placeholder' =>
'FIRSTNAME_LASTNAME_SUPERIOR',
121 'label' => $this->
getLanguage()->txt(
'mail_firstname_last_name_superior')
124 'placeholder' =>
'ILIAS_URL',
125 'label' => $this->
getLanguage()->txt(
'mail_nacc_ilias_url')
128 'placeholder' =>
'CLIENT_NAME',
129 'label' => $this->
getLanguage()->txt(
'mail_nacc_client_name')
143 return $placeholders + $specific;
160 string $placeholder_id,
161 array $context_parameters,
163 bool $html_markup =
false 174 string $placeholder_id,
175 array $context_parameters,
177 bool $html_markup =
false 179 if ($recipient !== null) {
186 case (
'mail_salutation' === $placeholder_id && $recipient !== null):
187 $resolved = $this->
getLanguage()->txt(
'mail_salutation_n');
188 switch ($recipient->getGender()) {
190 $resolved = $this->
getLanguage()->txt(
'mail_salutation_f');
194 $resolved = $this->
getLanguage()->txt(
'mail_salutation_m');
198 $resolved = $this->
getLanguage()->txt(
'mail_salutation_n');
203 case (
'first_name' === $placeholder_id && $recipient !== null):
204 $resolved = $recipient->getFirstname();
207 case (
'last_name' === $placeholder_id && $recipient !== null):
208 $resolved = $recipient->getLastname();
211 case (
'login' === $placeholder_id && $recipient !== null):
212 $resolved = $recipient->getLogin();
215 case (
'title' === $placeholder_id && $recipient !== null):
216 $resolved = $recipient->getUTitle();
219 case 'ilias_url' === $placeholder_id:
220 $resolved = $this->envHelper->getHttpPath() .
'/login.php?client_id=' . $this->envHelper->getClientId();
223 case 'client_name' === $placeholder_id:
224 $resolved = $this->envHelper->getClientId();
227 case 'firstname_last_name_superior' === $placeholder_id && $recipient !== null:
228 $ouUsers = $this->orgUnitUserService->getUsers([$recipient->getId()],
true);
229 foreach ($ouUsers as $ouUser) {
230 $superiors = $ouUser->getSuperiors();
232 $superiorUsrIds = array_map(
function (
ilOrgUnitUser $ouUser) {
236 $usrIdByNameMap = $this->userHelper->getUsernameMapForIds($superiorUsrIds);
238 $resolved = implode(
', ', $usrIdByNameMap);
258 return (
string) $resolved;
274 $this->
language = $this->languageHelper->getLanguageByIsoCode($isoCode);
275 $this->
language->loadLanguageModule(
'mail');
initLanguageByIso2Code(string $isoCode)
resolvePlaceholder(string $placeholder_id, array $context_parameters, ilObjUser $recipient=null, bool $html_markup=false)
resolveSpecificPlaceholder(string $placeholder_id, array $context_parameters, ilObjUser $recipient=null, bool $html_markup=false)
getSpecificPlaceholders()
Return an array of placeholders.
Class ilMailEnvironmentHelper.
getId()
Returns a unique (in the context of mail template contexts) id.
static setLanguage($a_lng)
set language
initLanguage(ilObjUser $user)
getTitle()
Returns a translated title (depending on the current language) which is displayed in the user interfa...
Class ilMailLanguageHelper.
Class ilMailTemplateContext.
__construct(OrgUnitUserService $orgUnitUserService=null, ilMailEnvironmentHelper $envHelper=null, ilMailUserHelper $usernameHelper=null, ilMailLanguageHelper $languageHelper=null)
ilMailTemplateContext constructor.
getPlaceholders()
Return an array of placeholders.
getDescription()
Returns a translated description (depending on the current language) which is displayed in the user i...
static getLanguage()
set language
getLanguage()
returns a 2char-language-string public