X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FPhoto.php;h=34ee4db83324c229d54d1a0d943be3d13c4f75f2;hb=46c4bfe5804cc921b9512ce8e186fab3b4727bfd;hp=4ec4f204c3c4efee2973ca7f94454fbe479ba9a9;hpb=0a82fe4211f73cf10107feb69fe38eaa85eb61f8;p=friendica.git diff --git a/src/Module/Photo.php b/src/Module/Photo.php index 4ec4f204c3..34ee4db833 100644 --- a/src/Module/Photo.php +++ b/src/Module/Photo.php @@ -6,26 +6,25 @@ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\System; +use Friendica\DI; use Friendica\Model\Photo as MPhoto; -use Friendica\Object\Image; /** - * @brief Photo Module + * Photo Module */ class Photo extends BaseModule { /** - * @brief Module initializer + * Module initializer * * Fetch a photo or an avatar, in optional size, check for permissions and * return the image */ - public static function init() + public static function init(array $parameters = []) { - $a = self::getApp(); + $a = DI::app(); // @TODO: Replace with parameter from router if ($a->argc <= 1 || $a->argc > 4) { throw new \Friendica\Network\HTTPException\BadRequestException(); @@ -84,7 +83,7 @@ class Photo extends BaseModule if (is_null($img) || !$img->isValid()) { Logger::log("Invalid photo with id {$photo["id"]}."); - throw new \Friendica\Network\HTTPException\InternalServerErrorException(L10n::t('Invalid photo with id %s.', $photo["id"])); + throw new \Friendica\Network\HTTPException\InternalServerErrorException(DI::l10n()->t('Invalid photo with id %s.', $photo["id"])); } // if customsize is set and image is not a gif, resize it