X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwall_upload.php;h=2f92b2f03cde260121aab3f85bfa71434948d588;hb=ab8997f9db910ba70c592bf106a7f5fc41a55b2d;hp=31112367a9442eb0c33253d3e68c4fab3b072d3f;hpb=d0068170db2624f14aed6b5d801c948cdf5cbc90;p=friendica.git diff --git a/mod/wall_upload.php b/mod/wall_upload.php index 31112367a9..2f92b2f03c 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -1,7 +1,7 @@ L10n::t('Invalid request.')]); + echo json_encode(['error' => DI::l10n()->t('Invalid request.')]); exit(); } return; @@ -56,7 +55,7 @@ function wall_upload_post(App $a, $desktopmode = true) } } else { if ($r_json) { - echo json_encode(['error' => L10n::t('Invalid request.')]); + echo json_encode(['error' => DI::l10n()->t('Invalid request.')]); exit(); } return; @@ -92,16 +91,16 @@ function wall_upload_post(App $a, $desktopmode = true) if (!$can_post) { if ($r_json) { - echo json_encode(['error' => L10n::t('Permission denied.')]); + echo json_encode(['error' => DI::l10n()->t('Permission denied.')]); exit(); } - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); exit(); } if (empty($_FILES['userfile']) && empty($_FILES['media'])) { if ($r_json) { - echo json_encode(['error' => L10n::t('Invalid request.')]); + echo json_encode(['error' => DI::l10n()->t('Invalid request.')]); } exit(); } @@ -152,10 +151,10 @@ function wall_upload_post(App $a, $desktopmode = true) if ($src == "") { if ($r_json) { - echo json_encode(['error' => L10n::t('Invalid request.')]); + echo json_encode(['error' => DI::l10n()->t('Invalid request.')]); exit(); } - notice(L10n::t('Invalid request.').EOL); + notice(DI::l10n()->t('Invalid request.').EOL); exit(); } @@ -183,7 +182,7 @@ function wall_upload_post(App $a, $desktopmode = true) $maximagesize = Config::get('system', 'maximagesize'); if (($maximagesize) && ($filesize > $maximagesize)) { - $msg = L10n::t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize)); + $msg = DI::l10n()->t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize)); if ($r_json) { echo json_encode(['error' => $msg]); } else { @@ -197,7 +196,7 @@ function wall_upload_post(App $a, $desktopmode = true) $Image = new Image($imagedata, $filetype); if (!$Image->isValid()) { - $msg = L10n::t('Unable to process image.'); + $msg = DI::l10n()->t('Unable to process image.'); if ($r_json) { echo json_encode(['error' => $msg]); } else { @@ -228,7 +227,7 @@ function wall_upload_post(App $a, $desktopmode = true) // If we don't have an album name use the Wall Photos album if (!strlen($album)) { - $album = L10n::t('Wall Photos'); + $album = DI::l10n()->t('Wall Photos'); } $defperm = '<' . $default_cid . '>'; @@ -236,7 +235,7 @@ function wall_upload_post(App $a, $desktopmode = true) $r = Photo::store($Image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 0, 0, $defperm); if (!$r) { - $msg = L10n::t('Image upload failed.'); + $msg = DI::l10n()->t('Image upload failed.'); if ($r_json) { echo json_encode(['error' => $msg]); } else { @@ -281,9 +280,9 @@ function wall_upload_post(App $a, $desktopmode = true) $picture["width"] = $r[0]["width"]; $picture["height"] = $r[0]["height"]; $picture["type"] = $r[0]["type"]; - $picture["albumpage"] = System::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id; - $picture["picture"] = System::baseUrl() . "/photo/{$resource_id}-0." . $Image->getExt(); - $picture["preview"] = System::baseUrl() . "/photo/{$resource_id}-{$smallest}." . $Image->getExt(); + $picture["albumpage"] = DI::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id; + $picture["picture"] = DI::baseUrl() . "/photo/{$resource_id}-0." . $Image->getExt(); + $picture["preview"] = DI::baseUrl() . "/photo/{$resource_id}-{$smallest}." . $Image->getExt(); if ($r_json) { echo json_encode(['picture' => $picture]); @@ -300,7 +299,7 @@ function wall_upload_post(App $a, $desktopmode = true) exit(); } - echo "\n\n" . '[url=' . System::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id . '][img]' . System::baseUrl() . "/photo/{$resource_id}-{$smallest}.".$Image->getExt()."[/img][/url]\n\n"; + echo "\n\n" . '[url=' . DI::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id . '][img]' . DI::baseUrl() . "/photo/{$resource_id}-{$smallest}.".$Image->getExt()."[/img][/url]\n\n"; exit(); // NOTREACHED }