19 declare(strict_types=1);
21 require_once
'Services/Calendar/classes/class.ilDateTime.php';
41 ?
int $dateFormat = null,
47 if (null === $objectHelper) {
52 if (null === $dateHelper) {
57 if (null === $dateFormat) {
62 if (null === $language) {
64 $language = $DIC->language();
69 if (null === $utilHelper) {
74 if (null === $userDefinedFieldsPlaceholderValues) {
81 $this->placeholder = [
83 'USER_FULLNAME' =>
'',
84 'USER_FIRSTNAME' =>
'',
85 'USER_LASTNAME' =>
'',
87 'USER_SALUTATION' =>
'',
88 'USER_BIRTHDAY' =>
'',
89 'USER_INSTITUTION' =>
'',
90 'USER_DEPARTMENT' =>
'',
95 'USER_MATRICULATION' =>
'',
98 'DATE_COMPLETED' =>
'',
99 'DATETIME_COMPLETED' =>
'',
116 $user = $this->objectHelper->getInstanceByObjId($userId);
118 throw new ilException(
'The entered id: ' . $userId .
' is not an user object');
123 $placeholder[
'USER_LOGIN'] = $this->utilHelper->prepareFormOutput((trim($user->getLogin())));
124 $placeholder[
'USER_FULLNAME'] = $this->utilHelper->prepareFormOutput((trim($user->getFullname())));
125 $placeholder[
'USER_FIRSTNAME'] = $this->utilHelper->prepareFormOutput((trim($user->getFirstname())));
126 $placeholder[
'USER_LASTNAME'] = $this->utilHelper->prepareFormOutput((trim($user->getLastname())));
127 $placeholder[
'USER_TITLE'] = $this->utilHelper->prepareFormOutput((trim($user->getUTitle())));
130 $gender = $user->getGender();
131 if (trim($gender) !==
'' && strtolower($gender) !==
'n') {
132 $salutation = $this->utilHelper->prepareFormOutput($this->
language->txt(
"salutation_" . trim($gender)));
135 $placeholder[
'USER_SALUTATION'] = $salutation;
138 $dateObject = $user->getBirthday();
139 if (null !== $dateObject) {
140 $birthday = $this->dateHelper->formatDate($dateObject, $this->birthdayDateFormat);
143 $placeholder[
'USER_BIRTHDAY'] = $this->utilHelper->prepareFormOutput((trim($birthday)));
144 $placeholder[
'USER_INSTITUTION'] = $this->utilHelper->prepareFormOutput((trim($user->getInstitution())));
145 $placeholder[
'USER_DEPARTMENT'] = $this->utilHelper->prepareFormOutput((trim($user->getDepartment())));
146 $placeholder[
'USER_STREET'] = $this->utilHelper->prepareFormOutput((trim($user->getStreet())));
147 $placeholder[
'USER_CITY'] = $this->utilHelper->prepareFormOutput((trim($user->getCity())));
148 $placeholder[
'USER_ZIPCODE'] = $this->utilHelper->prepareFormOutput((trim($user->getZipcode())));
149 $placeholder[
'USER_COUNTRY'] = $this->utilHelper->prepareFormOutput((trim($user->getCountry())));
150 $placeholder[
'USER_MATRICULATION'] = $this->utilHelper->prepareFormOutput((trim($user->getMatriculation())));
151 $placeholder[
'DATE'] = $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDate(
155 $placeholder[
'DATETIME'] = $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDateTime(
162 $this->userDefinedFieldsPlaceholderValues->getPlaceholderValues($userId, $objId)
180 $previewPlacholderValues = [
181 "USER_LOGIN" => $this->utilHelper->prepareFormOutput($this->
language->txt(
"certificate_var_user_login")),
182 "USER_FULLNAME" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_fullname")),
183 "USER_FIRSTNAME" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_firstname")),
184 "USER_LASTNAME" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_lastname")),
185 "USER_TITLE" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_title")),
186 "USER_SALUTATION" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_salutation")),
187 "USER_BIRTHDAY" => $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDate(
191 "USER_INSTITUTION" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_institution")),
192 "USER_DEPARTMENT" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_department")),
193 "USER_STREET" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_street")),
194 "USER_CITY" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_city")),
195 "USER_ZIPCODE" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_zipcode")),
196 "USER_COUNTRY" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_country")),
197 "USER_MATRICULATION" => $this->utilHelper->prepareFormOutput($this->language->txt(
"certificate_var_user_matriculation")),
198 'DATE' => $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDate(
202 'DATETIME' => $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDateTime(
206 'DATE_COMPLETED' => $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDate(
210 'DATETIME_COMPLETED' => $this->utilHelper->prepareFormOutput((trim($this->dateHelper->formatDateTime(
217 $previewPlacholderValues,
218 $this->userDefinedFieldsPlaceholderValues->getPlaceholderValuesForPreview($userId, $objId)
ilCertificateUtilHelper $utilHelper
__construct(?ilCertificateObjectHelper $objectHelper=null, ?ilCertificateDateHelper $dateHelper=null, ?int $dateFormat=null, ?ilLanguage $language=null, ?ilCertificateUtilHelper $utilHelper=null, ?ilUserDefinedFieldsPlaceholderValues $userDefinedFieldsPlaceholderValues=null, int $birthdayDateFormat=IL_CAL_DATE)
Collection of basic placeholder values that can be used.
ilCertificateDateHelper $dateHelper
loadLanguageModule(string $a_module)
Load language module.
getPlaceholderValuesForPreview(int $userId, int $objId)
This method is different then the 'getPlaceholderValues' method, this method is used to create a plac...
ilUserDefinedFieldsPlaceholderValues $userDefinedFieldsPlaceholderValues
ilCertificateObjectHelper $objectHelper
Just a wrapper class to create Unit Test for other classes.
getPlaceholderValues(int $userId, int $objId)
This method MUST return an array that contains the actual data for the given user of the given object...