X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProxy.php;h=e104073f0331e6f22cd9dfcdce9b829e39bb309a;hb=b0086a49e2c28c528e178bcdd28203207feceef6;hp=4feb0b680f27ddfcb1a03799d7ba9198a11a0fdd;hpb=b9dba631aadf6c25a97b679808c684276b3dd76a;p=friendica.git diff --git a/src/Util/Proxy.php b/src/Util/Proxy.php index 4feb0b680f..e104073f03 100644 --- a/src/Util/Proxy.php +++ b/src/Util/Proxy.php @@ -1,12 +1,30 @@ . + * + */ namespace Friendica\Util; -use Friendica\Core\Config; use Friendica\DI; /** - * @brief Proxy utilities class + * Proxy utilities class */ class Proxy { @@ -39,14 +57,14 @@ class Proxy ]; /** - * @brief Private constructor + * Private constructor */ private function __construct () { // No instances from utilities classes } /** - * @brief Transform a remote URL into a local one. + * Transform a remote URL into a local one. * * This function only performs the URL replacement on http URL and if the * provided URL isn't local, "the isn't deactivated" (sic) and if the config @@ -80,7 +98,7 @@ class Proxy } // Is the proxy disabled? - if (Config::get('system', 'proxy_disabled')) { + if (DI::config()->get('system', 'proxy_disabled')) { return $url; } @@ -128,7 +146,7 @@ class Proxy } /** - * @brief "Proxifies" HTML code's image tags + * "Proxifies" HTML code's image tags * * "Proxifies", means replaces image URLs in given HTML code with those from * proxy storage directory. @@ -146,7 +164,7 @@ class Proxy } /** - * @brief Checks if the URL is a local URL. + * Checks if the URL is a local URL. * * @param string $url * @return boolean @@ -170,7 +188,7 @@ class Proxy } /** - * @brief Return the array of query string parameters from a URL + * Return the array of query string parameters from a URL * * @param string $url URL to parse * @return array Associative array of query string parameters @@ -186,7 +204,7 @@ class Proxy } /** - * @brief Call-back method to replace the UR + * Call-back method to replace the UR * * @param array $matches Matches from preg_replace_callback() * @return string Proxified HTML image tag