mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Compare commits
49 Commits
v4.2.0-rc.
...
master
Author | SHA1 | Date | |
---|---|---|---|
0deb86144d | |||
4ff298013c | |||
6bb02bbf24 | |||
7b5be950e0 | |||
b96b995d67 | |||
837874d925 | |||
075ce3fa15 | |||
b6d60586bb | |||
9c4ffffde7 | |||
c3df4d3ac7 | |||
ea373ef390 | |||
baeb850d45 | |||
4bbd89d474 | |||
dd4ecbd4ba | |||
03005a86c3 | |||
32bfb7a24a | |||
95d7f4a961 | |||
b0120e16c0 | |||
a6d586f76b | |||
061712e4d8 | |||
57e2dea210 | |||
04c62e4156 | |||
4cf37c0d33 | |||
16fcc9df2e | |||
0c9419c89b | |||
7837b61eb8 | |||
ac4178bd36 | |||
4579696576 | |||
677b07c634 | |||
060a3b3091 | |||
599736eb59 | |||
d846ec0741 | |||
a24d6d6b51 | |||
7cff486629 | |||
845788583d | |||
7d7bf89dcc | |||
118de57bb7 | |||
3ec20f2e52 | |||
8a82aedb76 | |||
016c2d7090 | |||
4c6a8e8326 | |||
3bdf037477 | |||
8e2bb52fc6 | |||
f85699b314 | |||
3ef5202f08 | |||
051de67924 | |||
e90b00610e | |||
9e7d1887c2 | |||
fb4a3ec3c6 |
6
.babelrc
6
.babelrc
@ -3,9 +3,9 @@
|
||||
, "last 2 chromeandroid versions"
|
||||
, "firefox esr"
|
||||
, "last 2 firefox versions"
|
||||
, "edge >= 17"
|
||||
, "safari >= 12"
|
||||
, "ios >= 12"
|
||||
, "last 2 edge versions"
|
||||
, "safari >= 15"
|
||||
, "ios >= 15"
|
||||
]
|
||||
}
|
||||
, "debug": true
|
||||
|
6
LICENSE
6
LICENSE
@ -4,13 +4,13 @@ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
|
||||
Parameters
|
||||
|
||||
Licensor: Tim Düsterhus
|
||||
Licensed Work: Tim’s Chat 4.2
|
||||
The Licensed Work is (c) 2010-2021 Tim Düsterhus
|
||||
Licensed Work: Tim’s Chat 4.3
|
||||
The Licensed Work is (c) 2010-2024 Tim Düsterhus
|
||||
Additional Use Grant: You may use the Licensed Work when your application
|
||||
uses the Licensed Work for a purpose that does neither
|
||||
directly or indirectly generate revenue.
|
||||
|
||||
Change Date: 2026-03-10
|
||||
Change Date: 2028-06-15
|
||||
|
||||
Change License: Version 2 or later of the GNU General Public License as
|
||||
published by the Free Software Foundation.
|
||||
|
@ -16,7 +16,7 @@
|
||||
<controller>chat\acp\form\RoomAddForm</controller>
|
||||
<parent>chat.acp.menu.link.room.list</parent>
|
||||
<permissions>admin.chat.canManageRoom</permissions>
|
||||
<icon>fa-plus</icon>
|
||||
<icon>plus</icon>
|
||||
</acpmenuitem>
|
||||
|
||||
<acpmenuitem name="chat.acp.menu.link.command.trigger.list">
|
||||
@ -29,7 +29,7 @@
|
||||
<controller>chat\acp\form\CommandTriggerAddForm</controller>
|
||||
<parent>chat.acp.menu.link.command.trigger.list</parent>
|
||||
<permissions>admin.chat.canManageTriggers</permissions>
|
||||
<icon>fa-plus</icon>
|
||||
<icon>plus</icon>
|
||||
</acpmenuitem>
|
||||
|
||||
<acpmenuitem name="chat.acp.menu.link.suspension.list">
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
<nav class="contentHeaderNavigation">
|
||||
<ul>
|
||||
<li><a href="{link application='chat' controller='CommandTriggerList'}{/link}" class="button"><span class="icon icon16 fa-list"></span> <span>{lang}chat.acp.command.trigger.list{/lang}</span></a></li>
|
||||
<li><a href="{link application='chat' controller='CommandTriggerList'}{/link}" class="button">{icon name='list'} <span>{lang}chat.acp.command.trigger.list{/lang}</span></a></li>
|
||||
|
||||
{event name='contentHeaderNavigation'}
|
||||
</ul>
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
<nav class="contentHeaderNavigation">
|
||||
<ul>
|
||||
<li><a href="{link controller='CommandTriggerAdd' application='chat'}{/link}" class="button"><span class="icon icon16 fa-plus"></span> <span>{lang}chat.acp.command.trigger.add{/lang}</span></a></li>
|
||||
<li><a href="{link controller='CommandTriggerAdd' application='chat'}{/link}" class="button">{icon name='plus'} <span>{lang}chat.acp.command.trigger.add{/lang}</span></a></li>
|
||||
|
||||
{event name='contentHeaderNavigation'}
|
||||
</ul>
|
||||
@ -45,8 +45,8 @@
|
||||
{foreach from=$objects item=trigger}
|
||||
<tr class="jsTriggerRow">
|
||||
<td class="columnIcon">
|
||||
<a href="{link controller='CommandTriggerEdit' object=$trigger application='chat'}{/link}" title="{lang}wcf.global.button.edit{/lang}" class="jsTooltip"><span class="icon icon16 fa-pencil"></span></a>
|
||||
<span class="icon icon16 fa-times jsDeleteButton jsTooltip pointer" title="{lang}wcf.global.button.delete{/lang}" data-object-id="{@$trigger->triggerID}" data-confirm-message-html="{lang __encode=true}chat.acp.command.trigger.delete.sure{/lang}"></span>
|
||||
<a href="{link controller='CommandTriggerEdit' object=$trigger application='chat'}{/link}" title="{lang}wcf.global.button.edit{/lang}" class="jsTooltip">{icon name='pencil'}</a>
|
||||
<span class="jsDeleteButton jsTooltip pointer" title="{lang}wcf.global.button.delete{/lang}" data-object-id="{$trigger->triggerID}" data-confirm-message-html="{lang __encode=true}chat.acp.command.trigger.delete.sure{/lang}">{icon name='xmark'}</span>
|
||||
|
||||
{event name='rowButtons'}
|
||||
</td>
|
||||
@ -75,7 +75,7 @@
|
||||
|
||||
<nav class="contentFooterNavigation">
|
||||
<ul>
|
||||
<li><a href="{link controller='CommandTriggerAdd' application='chat'}{/link}" class="button"><span class="icon icon16 fa-plus"></span> <span>{lang}chat.acp.command.trigger.add{/lang}</span></a></li>
|
||||
<li><a href="{link controller='CommandTriggerAdd' application='chat'}{/link}" class="button">{icon name='plus'} <span>{lang}chat.acp.command.trigger.add{/lang}</span></a></li>
|
||||
|
||||
{event name='contentFooterNavigation'}
|
||||
</ul>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
<nav class="contentHeaderNavigation">
|
||||
<ul>
|
||||
<li><a href="{link application='chat' controller='RoomList'}{/link}" class="button"><span class="icon icon16 fa-list"></span> <span>{lang}chat.acp.room.list{/lang}</span></a></li>
|
||||
<li><a href="{link application='chat' controller='RoomList'}{/link}" class="button">{icon name='list'} <span>{lang}chat.acp.room.list{/lang}</span></a></li>
|
||||
|
||||
{event name='contentHeaderNavigation'}
|
||||
</ul>
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
<nav class="contentHeaderNavigation">
|
||||
<ul>
|
||||
<li><a href="{link controller='RoomAdd' application='chat'}{/link}" class="button"><span class="icon icon16 fa-plus"></span> <span>{lang}chat.acp.room.add{/lang}</span></a></li>
|
||||
<li><a href="{link controller='RoomAdd' application='chat'}{/link}" class="button">{icon name='plus'} <span>{lang}chat.acp.room.add{/lang}</span></a></li>
|
||||
|
||||
{event name='contentHeaderNavigation'}
|
||||
</ul>
|
||||
@ -37,14 +37,14 @@
|
||||
<ol id="roomContainer0" class="sortableList" data-object-id="0">
|
||||
{content}
|
||||
{foreach from=$objects item=room}
|
||||
<li class="sortableNode sortableNoNesting" data-object-id="{@$room->roomID}">
|
||||
<li class="sortableNode sortableNoNesting" data-object-id="{$room->roomID}">
|
||||
<span class="sortableNodeLabel">
|
||||
<a href="{link controller='RoomEdit' application='chat' object=$room}{/link}">{$room}</a>
|
||||
|
||||
<span class="statusDisplay sortableButtonContainer">
|
||||
<span class="icon icon16 fa-arrows sortableNodeHandle"></span>
|
||||
<a href="{link controller='RoomEdit' application='chat' object=$room}{/link}" title="{lang}wcf.global.button.edit{/lang}" class="jsTooltip"><span class="icon icon16 fa-pencil"></span></a>
|
||||
<span class="icon icon16 fa-times jsDeleteButton jsTooltip pointer" title="{lang}wcf.global.button.delete{/lang}" data-object-id="{@$room->roomID}" data-confirm-message-html="{lang __encode=true}chat.acp.room.delete.sure{/lang}"></span>
|
||||
<span class="sortableNodeHandle">{icon name='up-down-left-right'}</span>
|
||||
<a href="{link controller='RoomEdit' application='chat' object=$room}{/link}" title="{lang}wcf.global.button.edit{/lang}" class="jsTooltip">{icon name='pencil'}</a>
|
||||
<span class="jsDeleteButton jsTooltip pointer" title="{lang}wcf.global.button.delete{/lang}" data-object-id="{$room->roomID}" data-confirm-message-html="{lang __encode=true}chat.acp.room.delete.sure{/lang}">{icon name='xmark'}</span>
|
||||
{event name='itemButtons'}
|
||||
</span>
|
||||
</span>
|
||||
@ -70,7 +70,7 @@
|
||||
|
||||
<nav class="contentFooterNavigation">
|
||||
<ul>
|
||||
<li><a href="{link controller='RoomAdd' application='chat'}{/link}" class="button"><span class="icon icon16 fa-plus"></span> <span>{lang}chat.acp.room.add{/lang}</span></a></li>
|
||||
<li><a href="{link controller='RoomAdd' application='chat'}{/link}" class="button">{icon name='plus'} <span>{lang}chat.acp.room.add{/lang}</span></a></li>
|
||||
|
||||
{event name='contentFooterNavigation'}
|
||||
</ul>
|
||||
|
@ -141,7 +141,7 @@ require([ 'Bastelstu.be/PromiseWrap/Ajax', 'Bastelstu.be/PromiseWrap/Ui/Confirma
|
||||
{foreach from=$objects item=suspension}
|
||||
<tr class="jsSuspensionRow" data-object-id="{$suspension->suspensionID}">
|
||||
<td class="columnIcon">
|
||||
<span class="icon icon16 fa-undo{if !$suspension->isActive()} disabled{else} pointer{/if} jsRevokeButton" title="{lang}chat.acp.suspension.revoke{/lang}" data-confirm-message-html="{lang}chat.acp.suspension.revoke.sure{/lang}"></span>
|
||||
<span class="jsRevokeButton{if !$suspension->isActive()} disabled{else} pointer{/if}" title="{lang}chat.acp.suspension.revoke{/lang}" data-confirm-message-html="{lang}chat.acp.suspension.revoke.sure{/lang}">{icon name='arrow-rotate-left'}</span>
|
||||
{event name='rowButtons'}
|
||||
</td>
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Deletes orphaned attachments.
|
||||
*
|
||||
* @author Tim Duesterhus
|
||||
* @copyright 2001-2022 WoltLab GmbH
|
||||
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
|
||||
* @package WoltLabSuite\Core
|
||||
* @see https://github.com/WoltLab/com.woltlab.wcf.conversation/blob/f0d4964a0b8042c440d5a3f759078429dc43c5b8/files/acp/update_com.woltlab.wcf.conversation_5.5_cleanup_orphaned_attachments.php
|
||||
*/
|
||||
|
||||
use wcf\data\attachment\AttachmentAction;
|
||||
use wcf\data\object\type\ObjectTypeCache;
|
||||
use wcf\system\package\SplitNodeException;
|
||||
use wcf\system\WCF;
|
||||
|
||||
$objectType = ObjectTypeCache::getInstance()
|
||||
->getObjectTypeByName('com.woltlab.wcf.attachment.objectType', 'be.bastelstu.chat.message');
|
||||
|
||||
$sql = "SELECT attachmentID
|
||||
FROM wcf1_attachment
|
||||
WHERE objectTypeID = ?
|
||||
AND objectID NOT IN (
|
||||
SELECT messageID
|
||||
FROM chat1_message
|
||||
)";
|
||||
$statement = WCF::getDB()->prepare($sql, 100);
|
||||
$statement->execute([$objectType->objectTypeID]);
|
||||
$attachmentIDs = $statement->fetchAll(\PDO::FETCH_COLUMN);
|
||||
|
||||
if (empty($attachmentIDs)) {
|
||||
return;
|
||||
}
|
||||
|
||||
(new AttachmentAction($attachmentIDs, 'delete'))->executeAction();
|
||||
|
||||
// If we reached this location we processed at least one attachment.
|
||||
// If this was the final attachment the next iteration will abort this
|
||||
// script early, thus not splitting the node.
|
||||
throw new SplitNodeException();
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -15,5 +15,5 @@
|
||||
|
||||
\define('RELATIVE_CHAT_DIR', '../');
|
||||
|
||||
require_once(RELATIVE_CHAT_DIR . '/config.inc.php');
|
||||
require_once(RELATIVE_CHAT_DIR . '/app.config.inc.php');
|
||||
require_once(RELATIVE_WCF_DIR . 'acp/global.php');
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,17 +1,17 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
* or later of the General Public License.
|
||||
*/
|
||||
|
||||
require_once(__DIR__ . '/config.inc.php');
|
||||
require_once(__DIR__ . '/app.config.inc.php');
|
||||
require_once(RELATIVE_WCF_DIR . 'global.php');
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -27,7 +27,7 @@ class CommandTrigger extends DatabaseObject implements IRouteController
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getTitle()
|
||||
public function getTitle(): string
|
||||
{
|
||||
return $this->commandTrigger;
|
||||
}
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -43,6 +43,7 @@ class MessageAction extends AbstractDatabaseObjectAction
|
||||
public function create()
|
||||
{
|
||||
$message = parent::create();
|
||||
\assert($message instanceof Message);
|
||||
|
||||
if (isset($this->parameters['updateTimestamp']) && $this->parameters['updateTimestamp']) {
|
||||
$sql = "UPDATE chat1_room_to_user
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -40,7 +40,7 @@ public function __construct(Message $message, Room $room)
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
$link = LinkHandler::getInstance()->getControllerLink(
|
||||
LogPage::class,
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -294,7 +294,7 @@ public function getLink(): string
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
'title' => $this->getTitle(),
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
@ -102,7 +102,7 @@ public function getUser(): User
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
'userID' => $this->userID,
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -110,7 +110,7 @@ public static function getDeadSessions()
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
'userID' => $this->userID,
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -35,6 +35,10 @@ public function canDownload($objectID): bool
|
||||
if ($objectID) {
|
||||
$message = new Message($objectID);
|
||||
|
||||
if (!$message->messageID) {
|
||||
return false;
|
||||
}
|
||||
|
||||
\assert($message->getMessageType()->objectType === 'be.bastelstu.chat.messageType.attachment');
|
||||
$room = $message->getRoom();
|
||||
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -27,7 +27,7 @@
|
||||
/**
|
||||
* Dynamic box controller implementation for a list of rooms.
|
||||
*/
|
||||
class RoomListBoxController extends AbstractDatabaseObjectListBoxController
|
||||
final class RoomListBoxController extends AbstractDatabaseObjectListBoxController
|
||||
{
|
||||
/**
|
||||
* @inheritDoc
|
||||
@ -91,7 +91,7 @@ public function hasLink()
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getLink()
|
||||
public function getLink(): string
|
||||
{
|
||||
return LinkHandler::getInstance()->getControllerLink(RoomListPage::class);
|
||||
}
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2010-2022 Tim Düsterhus
|
||||
* Copyright (C) 2010-2022 Woltlab GmbH
|
||||
* Copyright (C) 2010-2024 Tim Düsterhus
|
||||
* Copyright (C) 2010-2024 Woltlab GmbH
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 3
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010-2022 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2024 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2026-03-10
|
||||
* Change Date: 2028-06-15
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user