3 declare(strict_types=1);
42 $ilDB = $DIC->database();
44 if (!
$ilDB->tableExists(self::$tbl_userconfig)) {
46 'usr_id' => array(
'type' =>
'integer',
'notnull' =>
true,
'length' => 4),
47 'module' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 100),
48 'channel' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 100),
50 $ilDB->createTable(self::$tbl_userconfig, $fields);
51 $ilDB->addPrimaryKey(self::$tbl_userconfig, array(
'usr_id',
'module',
'channel'));
54 if (!
$ilDB->tableExists(self::$tbl_userlistener)) {
56 'usr_id' => array(
'type' =>
'integer',
'notnull' =>
true,
'length' => 4),
57 'module' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 100),
58 'sender_id' => array(
'type' =>
'integer',
'notnull' =>
true,
'length' => 4),
59 'disabled' => array(
'type' =>
'integer',
'notnull' =>
true,
'length' => 1),
61 $ilDB->createTable(self::$tbl_userlistener, $fields);
62 $ilDB->addPrimaryKey(self::$tbl_userlistener, array(
'usr_id',
'module',
'sender_id'));
65 if (!
$ilDB->tableExists(self::$tbl_notification_data)) {
67 'notification_id' => array(
'type' =>
'integer',
'notnull' =>
true,
'length' => 4),
68 'serialized' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 4000),
70 $ilDB->createTable(self::$tbl_notification_data, $fields);
71 $ilDB->addPrimaryKey(self::$tbl_notification_data, array(
'notification_id'));
73 $ilDB->createSequence(self::$tbl_notification_data);
76 if (!
$ilDB->tableExists(self::$tbl_notification_queue)) {
78 'notification_id' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
79 'usr_id' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
80 'valid_until' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
82 $ilDB->createTable(self::$tbl_notification_queue, $fields);
83 $ilDB->addPrimaryKey(self::$tbl_notification_queue, array(
'notification_id',
'usr_id'));
86 if (!
$ilDB->tableExists(self::$tbl_notification_osd_handler)) {
88 'notification_osd_id' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
89 'usr_id' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
90 'serialized' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 4000),
91 'valid_until' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
92 'time_added' => array(
'type' =>
'integer' ,
'notnull' =>
true,
'length' => 4),
93 'type' => array(
'type' =>
'text' ,
'notnull' =>
true,
'length' => 100),
95 $ilDB->createTable(self::$tbl_notification_osd_handler, $fields);
97 $ilDB->addPrimaryKey(self::$tbl_notification_osd_handler, array(
'notification_osd_id'));
99 $ilDB->createSequence(self::$tbl_notification_osd_handler);
102 if (!
$ilDB->tableExists(self::$tbl_notification_channels)) {
104 'channel_name' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
105 'title' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
106 'description' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 4000),
107 'class' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
108 'include' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
109 'config_type' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 30),
111 $ilDB->createTable(self::$tbl_notification_channels, $fields);
113 $ilDB->addPrimaryKey(self::$tbl_notification_channels, array(
'channel_name'));
115 self::registerChannel(
$ilDB,
'mail',
'mail',
'mail_desc',
'ilNotificationMailHandler',
'Services/Notifications/classes/class.ilNotificationMailHandler.php');
116 self::registerChannel(
$ilDB,
'osd',
'osd',
'osd_desc',
'ilNotificationOSDHandler',
'Services/Notifications/classes/class.ilNotificationOSDHandler.php');
119 if (!
$ilDB->tableExists(self::$tbl_notification_types)) {
121 'type_name' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
122 'title' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
123 'description' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
124 'notification_group' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 100),
125 'config_type' => array(
'type' =>
'text',
'notnull' =>
true,
'length' => 30),
127 $ilDB->createTable(self::$tbl_notification_types, $fields);
128 $ilDB->addPrimaryKey(self::$tbl_notification_types, array(
'type_name'));
130 self::registerType(
$ilDB,
'chat_invitation',
'chat_invitation',
'chat_invitation_description',
'chat');
131 self::registerType(
$ilDB,
'osd_maint',
'osd_maint',
'osd_maint_description',
'osd_notification');
static string $tbl_userconfig
static string $tbl_notification_data
static registerChannel(ilDBInterface $db, string $name, string $title, string $description, string $class, string $classfile, string $config_type='set_by_user')
static string $tbl_userlistener
static registerType(ilDBInterface $db, string $name, string $title, string $description, string $notification_group, string $config_type)
static registerChannel(ilDBInterface $db, string $name, string $title, string $description, string $class, string $classfile, string $config_type)
static string $tbl_notification_channels
static string $tbl_notification_osd_handler
static registerType(ilDBInterface $db, string $name, string $title, string $description, string $notification_group, string $config_type='set_by_user')
static string $tbl_notification_types
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static string $tbl_notification_queue