19 declare(strict_types=1);
26 public static function clearFromXml(
string $a_component, array $a_new_templates): void
29 if (!$DIC->database()->tableExists(
'mail_tpl_ctx')) {
32 $persisted_templates = [];
33 $query =
'SELECT id FROM mail_tpl_ctx WHERE component = ' . $DIC->database()->quote($a_component,
'text');
34 $set = $DIC->database()->query($query);
35 while ($row = $DIC->database()->fetchAssoc($set)) {
36 $persisted_templates[] = $row[
'id'];
39 if ($persisted_templates !== []) {
40 if ($a_new_templates !== []) {
41 foreach ($persisted_templates as
$id) {
42 if (!in_array($id, $a_new_templates,
true)) {
43 $DIC->database()->manipulate(
44 'DELETE FROM mail_tpl_ctx WHERE component = ' . $DIC->database()->quote(
47 ) .
' AND id = ' . $DIC->database()->quote($id,
'text')
52 $DIC->database()->manipulate(
53 'DELETE FROM mail_tpl_ctx WHERE component = ' . $DIC->database()->quote(
62 public static function insertFromXML(
string $a_component,
string $a_id,
string $a_class, ?
string $a_path): void
66 if (!$DIC->database()->tableExists(
'mail_tpl_ctx')) {
70 $context = self::getContextInstance($a_component, $a_id, $a_class, $a_path,
true);
72 self::createEntry(
$context, $a_component, $a_class, $a_path);
81 $contexts = self::getTemplateContexts([$a_id]);
82 $first_context = current($contexts);
84 throw new ilMailException(sprintf(
'Could not find a mail template context with id: %s', $a_id));
87 return $first_context;
100 $query =
'SELECT * FROM mail_tpl_ctx';
102 if (is_array($a_id) && count($a_id)) {
103 $where[] = $DIC->database()->in(
'id', $a_id,
false,
'text');
106 $query .=
' WHERE ' . implode(
' AND ', $where);
109 $set = $DIC->database()->query($query);
110 while ($row = $DIC->database()->fetchAssoc($set)) {
111 $context = self::getContextInstance($row[
'component'], $row[
'id'], $row[
'class'], $row[
'path']);
128 bool $isCreationContext =
false 130 if (class_exists($a_class)) {
131 if ($isCreationContext) {
133 $context = $reflClass->newInstanceWithoutConstructor();
157 $query =
'SELECT id FROM mail_tpl_ctx WHERE id = %s';
158 $res = $DIC->database()->queryF($query, [
'text'], [$a_context->
getId()]);
159 $row = $DIC->database()->fetchAssoc(
$res);
160 $row_id = $row[
'id'] ??
null;
161 $context_exists = ($row_id === $a_context->
getId());
163 if ($context_exists) {
164 $DIC->database()->update(
'mail_tpl_ctx', [
165 'component' => [
'text', $a_component],
166 'class' => [
'text', $a_class],
167 'path' => [
'text', $a_path]
169 'id' => [
'text', $a_context->
getId()]
172 $DIC->database()->insert(
'mail_tpl_ctx', [
173 'id' => [
'text', $a_context->
getId()],
174 'component' => [
'text', $a_component],
175 'class' => [
'text', $a_class],
176 'path' => [
'text', $a_path]
static insertFromXML(string $a_component, string $a_id, string $a_class, ?string $a_path)
static getContextInstance(string $a_component, string $a_id, string $a_class, ?string $a_path, bool $isCreationContext=false)
static getTemplateContextById(string $a_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getTemplateContexts(?array $a_id=null)
Returns an array of mail template contexts, the key of each entry matches its id. ...
static createEntry(ilMailTemplateContext $a_context, string $a_component, string $a_class, ?string $a_path)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static clearFromXml(string $a_component, array $a_new_templates)