ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailErrorFormatter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  public function __construct(protected ilLanguage $lng)
28  {
29  }
30 
36  public function format(array $errors): string
37  {
38  if ([] === $errors) {
39  return '';
40  }
41 
42  $errorsToDisplay = [];
43  foreach ($errors as $error) {
44  $translation = $this->lng->txt($error->getLanguageVariable());
45  if ($translation === '-' . $error->getLanguageVariable() . '-') {
46  $translation = $error->getLanguageVariable();
47  }
48 
49  if (
50  $translation === $error->getLanguageVariable() ||
51  [] === $error->getPlaceHolderValues()
52  ) {
53  $errorsToDisplay[] = $translation;
54  } else {
55  $escapedPlaceholderValues = array_map(static function (string $address): string {
57  }, $error->getPlaceHolderValues());
58 
59  array_unshift($escapedPlaceholderValues, $translation);
60  $errorsToDisplay[] = sprintf(...$escapedPlaceholderValues);
61  }
62  }
63 
64  $tpl = new ilTemplate(
65  'tpl.mail_new_submission_errors.html',
66  true,
67  true,
68  'components/ILIAS/Mail'
69  );
70  if (1 === count($errorsToDisplay)) {
71  $tpl->setCurrentBlock('single_error');
72  $tpl->setVariable('SINGLE_ERROR', current($errorsToDisplay));
73  } else {
74  $firstError = array_shift($errorsToDisplay);
75 
76  foreach ($errorsToDisplay as $error) {
77  $tpl->setCurrentBlock('error_loop');
78  $tpl->setVariable('ERROR', $error);
79  $tpl->parseCurrentBlock();
80  }
81 
82  $tpl->setCurrentBlock('multiple_errors');
83  $tpl->setVariable('FIRST_ERROR', $firstError);
84  }
85  $tpl->parseCurrentBlock();
86 
87  return $tpl->get();
88  }
89 }
__construct(protected ilLanguage $lng)
Class ilMailErrorFormatter.
static prepareFormOutput($a_str, bool $a_strip=false)
format(array $errors)
Formats an error string based on the passed list of errors.
global $lng
Definition: privfeed.php:31