Move Notify::TYPE_SYSTEM

This commit is contained in:
nupplaPhil 2020-02-04 22:23:37 +01:00
parent 4e9838f571
commit 6cc04a3ebc
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
2 changed files with 6 additions and 4 deletions

View File

@ -13,6 +13,7 @@ use Friendica\Core\Logger;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Notify\Type;
use Friendica\Util\ConfigFileLoader;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Strings;
@ -67,7 +68,7 @@ function public_server_cron($a, $b)
foreach ($r as $rr) {
notification([
'uid' => $rr['uid'],
'type' => NOTIFY_SYSTEM,
'type' => Type::SYSTEM,
'system_type' => 'public_server_expire',
'language' => $rr['language'],
'to_name' => $rr['username'],
@ -123,7 +124,7 @@ function public_server_cron($a, $b)
function public_server_enotify(&$a, &$b)
{
if (!empty($b['params']) && $b['params']['type'] == NOTIFY_SYSTEM
if (!empty($b['params']) && $b['params']['type'] == Type::SYSTEM
&& !empty($b['params']['system_type']) && $b['params']['system_type'] === 'public_server_expire') {
$b['itemlink'] = DI::baseUrl()->get();
$b['epreamble'] = $b['preamble'] = DI::l10n()->t('Your account on %s will expire in a few days.', DI::config()->get('system', 'sitename'));

View File

@ -11,6 +11,7 @@ use Friendica\Core\Hook;
use Friendica\Core\Search;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Notify\Type;
use Friendica\Model\User;
use Friendica\Util\ConfigFileLoader;
use Friendica\Util\DateTimeFormat;
@ -69,7 +70,7 @@ function testdrive_cron($a,$b) {
foreach($r as $rr) {
notification([
'uid' => $rr['uid'],
'type' => NOTIFY_SYSTEM,
'type' => Type::SYSTEM,
'system_type' => 'testdrive_expire',
'language' => $rr['language'],
'to_name' => $rr['username'],
@ -96,7 +97,7 @@ function testdrive_cron($a,$b) {
}
function testdrive_enotify(&$a, &$b) {
if (!empty($b['params']) && $b['params']['type'] == NOTIFY_SYSTEM
if (!empty($b['params']) && $b['params']['type'] == Type::SYSTEM
&& !empty($b['params']['system_type']) && $b['params']['system_type'] === 'testdrive_expire') {
$b['itemlink'] = DI::baseUrl()->get();
$b['epreamble'] = $b['preamble'] = DI::l10n()->t('Your account on %s will expire in a few days.', DI::config()->get('system', 'sitename'));