3 declare(strict_types=1);
41 $ilDB = $DIC->database();
44 $langVarToTypeDict = [];
46 foreach ($vars as
$type => $var) {
50 $where[] = sprintf(
'module = %s AND identifier = %s',
$ilDB->quote($var->getLanguageModule()),
$ilDB->quote($var->getName()));
51 $langVarToTypeDict[$var->getName()] =
$type;
58 $query =
'SELECT identifier, lang_key, value FROM lng_data WHERE (' . implode(
') OR (', $where) .
')';
65 $results[$row[
'identifier']]->lang_untouched = [];
66 $results[$row[
'identifier']]->params = [];
68 $results[$row[
'identifier']]->lang_untouched[$row[
'lang_key']] = $row[
'value'];
71 return self::fillPlaceholders(
$results, $vars, $langVarToTypeDict);
79 $pattern_old =
'/##(.+?)##/im';
80 $pattern =
'/\[(.+?)\]/im';
82 foreach ($results as $langVar =>
$res) {
83 $placeholdersStack = [];
86 foreach (
$res->lang_untouched as $iso2shorthandle => $translation) {
87 $translation = str_replace(
"\\n",
"\n", $translation);
88 $placeholdersStack[] = self::findPlaceholders($pattern, $translation);
89 $translation = self::replaceFields($translation, $placeholdersStack[count($placeholdersStack) - 1], $vars[$langVarToTypeDict[$langVar]]->getParameters(),
'[',
']');
90 $placeholdersStack[] = self::findPlaceholders($pattern_old, $translation);
91 $res->lang[$iso2shorthandle] = self::replaceFields($translation, $placeholdersStack[count($placeholdersStack) - 1], $vars[$langVarToTypeDict[$langVar]]->getParameters(),
'##',
'##');
94 $res->params = array_diff(
96 array_merge(...$placeholdersStack)
98 array_keys($vars[$langVarToTypeDict[$langVar]]->getParameters())
107 $foundPlaceholders = [];
108 preg_match_all($pattern, $translation, $foundPlaceholders);
109 return (array) $foundPlaceholders[1];
116 private static function replaceFields(
string $string, array $foundPlaceholders, array
$params,
string $startTag,
string $endTage): string
119 foreach ($foundPlaceholders as $placeholder) {
120 if (array_key_exists(strtoupper($placeholder), $params)) {
121 $result = str_ireplace($startTag . $placeholder . $endTage, $params[strtoupper($placeholder)], $result);
123 if (array_key_exists(strtolower($placeholder), $params)) {
124 $result = str_ireplace($startTag . $placeholder . $endTage, $params[strtolower($placeholder)], $result);
134 $ilDB = $DIC->database();
136 if ($userid !== -1) {
137 $channels = self::getAvailableChannels([
'set_by_user']);
138 $types = self::getAvailableTypes([
'set_by_user']);
144 $types = [
'integer'];
150 foreach ($configArray as
$type => $channels) {
151 foreach ($channels as $channel => $value) {
158 'usr_id' => [
'integer', $userid],
159 'module' => [
'text',
$type],
160 'channel' => [
'text', $channel],
176 $ilDB = $DIC->database();
179 $types = [
'integer'];
187 if (!isset($result[$row[
'module']])) {
188 $result[$row[
'module']] = [];
191 $result[$row[
'module']][] = $row[
'channel'];
205 $ilDB = $DIC->database();
207 $notification_id = self::storeNotification($notification);
210 foreach ($userids as $userid) {
214 'notification_id' => [
'integer', $notification_id],
215 'usr_id' => [
'integer', $userid],
216 'valid_until' => [
'integer', $valid_until],
227 $ilDB = $DIC->database();
229 $notification_id = self::storeNotification($notification);
235 $types = [
'integer',
'integer',
'integer',
'text',
'integer'];
246 $ilDB = $DIC->database();
253 'notification_id' => [
'integer',
$id],
254 'serialized' => [
'text', serialize($notification)],
265 $ilDB = $DIC->database();
268 $types = [
'integer'];
281 $ilDB = $DIC->database();
284 $types = [
'text',
'integer'];
285 $values = [$module, $sender_id];
290 while ($row =
$ilDB->fetchAssoc($rset)) {
291 $users[] = (
int) $row[
'usr_id'];
300 $ilDB = $DIC->database();
303 $types = [
'text',
'integer'];
304 $values = [$module, $sender_id];
309 public static function enableListeners(
string $module, $sender_id, array $users = []): void
313 $ilDB = $DIC->database();
321 $types = [
'text',
'integer'];
322 $values = [$module, $sender_id];
332 'channel_name' => [
'text', $name],
333 'title' => [
'text', $title],
334 'description' => [
'text', $description],
335 'class' => [
'text', $class],
336 'include' => [
'text', $classfile],
337 'config_type' => [
'text', $config_type],
347 'type_name' => [
'text', $name],
348 'title' => [
'text', $title],
349 'description' => [
'text', $description],
350 'notification_group' => [
'text', $notification_group],
351 'config_type' => [
'text', $config_type],
363 $ilDB = $DIC->database();
367 $query .=
' WHERE ' .
$ilDB->in(
'config_type', $config_types,
false,
'text');
376 while ($row =
$ilDB->fetchAssoc($rset)) {
377 if (!$includeDisabled && !
$settings->get(
'enable_' . $row[
'channel_name'])) {
381 $result[$row[
'channel_name']] = [
382 'name' => $row[
'channel_name'],
383 'title' => $row[
'title'],
384 'description' => $row[
'description'],
385 'handler' => $row[
'class'],
386 'include' => $row[
'include'],
387 'config_type' => $row[
'config_type'],
401 $ilDB = $DIC->database();
405 $query .=
' WHERE ' .
$ilDB->in(
'config_type', $config_types,
false,
'text');
413 while ($row =
$ilDB->fetchAssoc($rset)) {
414 $result[$row[
'type_name']] = [
415 'name' => $row[
'type_name'],
416 'title' => $row[
'title'],
417 'description' => $row[
'description'],
418 'group' => $row[
'notification_group'],
419 'config_type' => $row[
'config_type'],
430 $ilDB = $DIC->database();
433 $types = [
'text',
'text'];
434 $values = [$config_name, $type_name];
442 $ilDB = $DIC->database();
445 $types = [
'text',
'text'];
446 $values = [$config_name, $channel_name];
459 $ilDB = $DIC->database();
461 $query =
'SELECT usr_id, value FROM usr_pref WHERE ' .
$ilDB->in(
'usr_id', $userid,
false,
'integer') .
' AND keyword="use_custom_notification_setting" AND value="1"';
464 while ($row =
$ilDB->fetchAssoc($rset)) {
465 $result[$row[
'usr_id']] = (bool) $row[
'value'];
insert(string $table_name, array $values)
static fillPlaceholders(array $results, array $vars, array $langVarToTypeDict)
static findPlaceholders(string $pattern, string $translation)
static string $tbl_userconfig
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static enqueueByListener(ilNotificationConfig $notification, int $ref_id)
static setUserConfig(int $userid, array $configArray)
static string $tbl_notification_data
static string $tbl_userlistener
static getUsersByListener(string $module, int $sender_id)
static removeNotification(int $id)
static registerType(ilDBInterface $db, string $name, string $title, string $description, string $notification_group, string $config_type)
static replaceFields(string $string, array $foundPlaceholders, array $params, string $startTag, string $endTage)
static disableListeners(string $module, int $sender_id)
static getAvailableTypes(array $config_types=[])
static registerChannel(ilDBInterface $db, string $name, string $title, string $description, string $class, string $classfile, string $config_type)
static enableListeners(string $module, $sender_id, array $users=[])
static getTranslatedLanguageVariablesOfNotificationParameters(array $vars=[])
static loadUserConfig(int $userid)
static enqueueByUsers(ilNotificationConfig $notification, array $userids)
static string $tbl_notification_channels
static string $tbl_notification_types
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static setConfigTypeForType(string $type_name, string $config_name)
static setConfigTypeForChannel(string $channel_name, string $config_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAvailableChannels(array $config_types=[], bool $includeDisabled=false)
static storeNotification(ilNotificationConfig $notification)
static getUsersWithCustomConfig(array $userid)
static string $tbl_notification_queue