]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove deprecated OC_Helper::linkTo function
authorRoeland Jago Douma <rullzer@owncloud.com>
Thu, 17 Dec 2015 10:51:40 +0000 (11:51 +0100)
committerRoeland Jago Douma <rullzer@owncloud.com>
Thu, 17 Dec 2015 10:51:40 +0000 (11:51 +0100)
lib/private/helper.php
tests/lib/helper.php

index ed127a62f38d2d7aea145c94bbe6074f3efedf8d..779a67a2340232d7ee170b6b24385fb4a9dd62d6 100644 (file)
@@ -66,21 +66,6 @@ class OC_Helper {
                return OC::$server->getURLGenerator()->linkToRoute($route, $parameters);
        }
 
-       /**
-        * 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
index b7deb3fc13d4d0ae45271216dc854c36f6cb0e79..469ffecc773c4a49380ed5c7caf81b1309886b51 100644 (file)
@@ -294,52 +294,6 @@ class Test_Helper extends \Test\TestCase {
                );
        }
 
-       /**
-        * @small
-        * test linkTo URL construction
-        * @dataProvider provideDocRootAppUrlParts
-        */
-       public function testLinkToDocRoot($app, $file, $args, $expectedResult) {
-               \OC::$WEBROOT = '';
-               $result = \OC_Helper::linkTo($app, $file, $args);
-
-               $this->assertEquals($expectedResult, $result);
-       }
-
-       /**
-        * @small
-        * test linkTo URL construction in sub directory
-        * @dataProvider provideSubDirAppUrlParts
-        */
-       public function testLinkToSubDir($app, $file, $args, $expectedResult) {
-               \OC::$WEBROOT = '/owncloud';
-               $result = \OC_Helper::linkTo($app, $file, $args);
-
-               $this->assertEquals($expectedResult, $result);
-       }
-
-       /**
-        * @return array
-        */
-       public function provideDocRootAppUrlParts() {
-               return array(
-                       array('files', 'ajax/list.php', array(), '/index.php/apps/files/ajax/list.php'),
-                       array('files', 'ajax/list.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php/apps/files/ajax/list.php?trut=trat&dut=dat'),
-                       array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php?trut=trat&dut=dat'),
-               );
-       }
-
-       /**
-        * @return array
-        */
-       public function provideSubDirAppUrlParts() {
-               return array(
-                       array('files', 'ajax/list.php', array(), '/owncloud/index.php/apps/files/ajax/list.php'),
-                       array('files', 'ajax/list.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php/apps/files/ajax/list.php?trut=trat&dut=dat'),
-                       array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php?trut=trat&dut=dat'),
-               );
-       }
-
        /**
         * @small
         * test linkToAbsolute URL construction