ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailTemplateRepository.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  protected ilDBInterface $db;
27 
28  public function __construct(?ilDBInterface $db = null)
29  {
30  global $DIC;
31  $this->db = $db ?? $DIC->database();
32  }
33 
37  public function getAll(): array
38  {
39  $templates = [];
40 
41  $res = $this->db->query('SELECT * FROM mail_man_tpl');
42  while ($row = $this->db->fetchAssoc($res)) {
43  $template = new ilMailTemplate($row);
44  $templates[] = $template;
45  }
46 
47  return $templates;
48  }
49 
50  public function findById(int $templateId): ilMailTemplate
51  {
52  $res = $this->db->queryF(
53  'SELECT * FROM mail_man_tpl WHERE tpl_id = %s',
55  [$templateId]
56  );
57 
58  if (1 === $this->db->numRows($res)) {
59  $row = $this->db->fetchAssoc($res);
60  return new ilMailTemplate($row);
61  }
62 
63  throw new OutOfBoundsException(sprintf("Could not find template by id: %s", $templateId));
64  }
65 
69  public function findByContextId(string $contextId): array
70  {
71  return array_filter($this->getAll(), static function (ilMailTemplate $template) use ($contextId): bool {
72  return $contextId === $template->getContext();
73  });
74  }
75 
79  public function deleteByIds(array $templateIds): void
80  {
81  if ($templateIds !== []) {
82  $this->db->manipulate(
83  'DELETE FROM mail_man_tpl WHERE ' . $this->db->in('tpl_id', $templateIds, false, ilDBConstants::T_INTEGER)
84  );
85  }
86  }
87 
88  public function store(ilMailTemplate $template): void
89  {
90  if ($template->getTplId() > 0) {
91  $this->db->update(
92  'mail_man_tpl',
93  [
94  'title' => [ilDBConstants::T_TEXT, $template->getTitle()],
95  'context' => [ilDBConstants::T_TEXT, $template->getContext()],
96  'lang' => [ilDBConstants::T_TEXT, $template->getLang()],
97  'm_subject' => [ilDBConstants::T_TEXT, $template->getSubject()],
98  'm_message' => [ilDBConstants::T_TEXT, $template->getMessage()],
99  'is_default' => [ilDBConstants::T_INTEGER, $template->isDefault()],
100  ],
101  [
102  'tpl_id' => [ilDBConstants::T_INTEGER, $template->getTplId()],
103  ]
104  );
105  } else {
106  $nextId = $this->db->nextId('mail_man_tpl');
107  $this->db->insert('mail_man_tpl', [
108  'tpl_id' => [ilDBConstants::T_INTEGER, $nextId],
109  'title' => [ilDBConstants::T_TEXT, $template->getTitle()],
110  'context' => [ilDBConstants::T_TEXT, $template->getContext()],
111  'lang' => [ilDBConstants::T_TEXT, $template->getLang()],
112  'm_subject' => [ilDBConstants::T_TEXT, $template->getSubject()],
113  'm_message' => [ilDBConstants::T_TEXT, $template->getMessage()],
114  'is_default' => [ilDBConstants::T_INTEGER, $template->isDefault()],
115  ]);
116  $template->setTplId($nextId);
117  }
118  }
119 }
$res
Definition: ltiservices.php:66
Class ilMailTemplate.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
setTplId(int $templateId)