diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 11:51:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 11:51:40 +0100 |
commit | 205c239eab1912d1a8650ae9ed926d28839ac1ec (patch) | |
tree | 86bd3b2963c88e122c78bb0d409dc87225e0455d /lib/private/helper.php | |
parent | 19eeb23b910104d2447888c12439a1008cc921b9 (diff) | |
download | nextcloud-server-205c239eab1912d1a8650ae9ed926d28839ac1ec.tar.gz nextcloud-server-205c239eab1912d1a8650ae9ed926d28839ac1ec.zip |
Remove deprecated OC_Helper::linkTo function
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r-- | lib/private/helper.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index ed127a62f38..779a67a2340 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -67,21 +67,6 @@ class OC_Helper { } /** - * Creates an url - * @param string $app app - * @param string $file file - * @param array $args array with param=>value, will be appended to the returned url - * The value of $args will be urlencoded - * @return string the url - * @deprecated Use \OC::$server->getURLGenerator()->linkTo($app, $file, $args) - * - * Returns a url to the given app and file. - */ - public static function linkTo( $app, $file, $args = array() ) { - return OC::$server->getURLGenerator()->linkTo($app, $file, $args); - } - - /** * Creates an absolute url * @param string $app app * @param string $file file |