]> git.mxchange.org Git - friendica.git/blobdiff - mod/notify.php
Finish t() for mod
[friendica.git] / mod / notify.php
index fae7ebb39b921cb7a29a4d603b749ca2ae5e8364..8ae925a0653cd8eee0b14381335b113075350836 100644 (file)
@@ -1,11 +1,16 @@
 <?php
-
+/**
+ * @file mod/notify.php
+ */
 use Friendica\App;
 use Friendica\Core\NotificationsManager;
+use Friendica\Core\L10n;
 use Friendica\Core\System;
 use Friendica\Database\DBM;
+use Friendica\Module\Login;
 
-function notify_init(App $a) {
+function notify_init(App $a)
+{
        if (! local_user()) {
                return;
        }
@@ -34,18 +39,18 @@ function notify_init(App $a) {
                goaway(System::baseUrl(true));
        }
 
-       if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all' ) {
+       if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
                $r = $nm->setAllSeen();
-               $j = json_encode(array('result' => ($r) ? 'success' : 'fail'));
+               $j = json_encode(['result' => ($r) ? 'success' : 'fail']);
                echo $j;
                killme();
        }
-
 }
 
-function notify_content(App $a) {
+function notify_content(App $a)
+{
        if (! local_user()) {
-               return login();
+               return Login::form();
        }
 
        $nm = new NotificationsManager();
@@ -55,27 +60,25 @@ function notify_content(App $a) {
        $not_tpl = get_markup_template('notify.tpl');
        require_once('include/bbcode.php');
 
-       $r = $nm->getAll(array('seen'=>0));
+       $r = $nm->getAll(['seen'=>0]);
        if (DBM::is_result($r) > 0) {
                foreach ($r as $it) {
-                       $notif_content .= replace_macros($not_tpl,array(
+                       $notif_content .= replace_macros($not_tpl, [
                                '$item_link' => System::baseUrl(true).'/notify/view/'. $it['id'],
                                '$item_image' => $it['photo'],
                                '$item_text' => strip_tags(bbcode($it['msg'])),
                                '$item_when' => relative_date($it['date'])
-                       ));
+                       ]);
                }
        } else {
-               $notif_content .= t('No more system notifications.');
+               $notif_content .= L10n::t('No more system notifications.');
        }
 
-       $o .= replace_macros($notif_tpl, array(
-               '$notif_header' => t('System Notifications'),
+       $o .= replace_macros($notif_tpl, [
+               '$notif_header' => L10n::t('System Notifications'),
                '$tabs' => false, // $tabs,
                '$notif_content' => $notif_content,
-       ));
+       ]);
 
        return $o;
-
-
 }