mirror of
https://github.com/friendica/friendica
synced 2024-11-18 21:43:40 +00:00
rearrange rawContent / content
This commit is contained in:
parent
2906a9031b
commit
68fdc7215e
1 changed files with 8 additions and 8 deletions
|
@ -3,6 +3,7 @@
|
||||||
namespace Friendica\Module\Notifications;
|
namespace Friendica\Module\Notifications;
|
||||||
|
|
||||||
use Friendica\BaseModule;
|
use Friendica\BaseModule;
|
||||||
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Core\NotificationsManager;
|
use Friendica\Core\NotificationsManager;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
use Friendica\Network\HTTPException;
|
use Friendica\Network\HTTPException;
|
||||||
|
@ -12,11 +13,7 @@ use Friendica\Network\HTTPException;
|
||||||
*/
|
*/
|
||||||
class Notify extends BaseModule
|
class Notify extends BaseModule
|
||||||
{
|
{
|
||||||
/**
|
public static function init()
|
||||||
* @throws HTTPException\InternalServerErrorException
|
|
||||||
* @throws HTTPException\UnauthorizedException
|
|
||||||
*/
|
|
||||||
public static function rawContent()
|
|
||||||
{
|
{
|
||||||
if (!local_user()) {
|
if (!local_user()) {
|
||||||
throw new HTTPException\UnauthorizedException(L10n::t('Permission denied.'));
|
throw new HTTPException\UnauthorizedException(L10n::t('Permission denied.'));
|
||||||
|
@ -38,6 +35,11 @@ class Notify extends BaseModule
|
||||||
|
|
||||||
$a->internalRedirect();
|
$a->internalRedirect();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function rawContent()
|
||||||
|
{
|
||||||
|
$a = self::getApp();
|
||||||
|
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
|
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
|
||||||
|
@ -63,8 +65,6 @@ class Notify extends BaseModule
|
||||||
$a = self::getApp();
|
$a = self::getApp();
|
||||||
|
|
||||||
// @TODO: Replace with parameter from router
|
// @TODO: Replace with parameter from router
|
||||||
if (($a->argc > 0) && ($a->argv[0] == 'notify')) {
|
|
||||||
$a->internalRedirect('notifications/system');
|
$a->internalRedirect('notifications/system');
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue