]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Photo.php
Notify => Notification
[friendica.git] / src / Module / Photo.php
index 9987c38f517041224be88a2895ed961e0b83dbb9..34ee4db83324c229d54d1a0d943be3d13c4f75f2 100644 (file)
@@ -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(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