2013-09-26 20:41:19 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-11-03 16:51:39 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-11-03 16:51:39 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-09-26 20:41:19 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* URL generator interface
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-03 16:38:25 +04:00
|
|
|
// use OCP namespace for all classes that are considered public.
|
|
|
|
// This means that they should be used by apps instead of the internal ownCloud classes
|
2013-09-26 20:41:19 +04:00
|
|
|
namespace OCP;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to generate URLs
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-26 20:41:19 +04:00
|
|
|
*/
|
|
|
|
interface IURLGenerator {
|
|
|
|
/**
|
|
|
|
* Returns the URL for a route
|
|
|
|
* @param string $routeName the name of the route
|
|
|
|
* @param array $arguments an array with arguments which will be filled into the url
|
|
|
|
* @return string the url
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-26 20:41:19 +04:00
|
|
|
*/
|
|
|
|
public function linkToRoute($routeName, $arguments = array());
|
|
|
|
|
2014-09-08 16:43:14 +04:00
|
|
|
/**
|
|
|
|
* Returns the absolute URL for a route
|
|
|
|
* @param string $routeName the name of the route
|
|
|
|
* @param array $arguments an array with arguments which will be filled into the url
|
|
|
|
* @return string the absolute url
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-09-08 16:43:14 +04:00
|
|
|
*/
|
|
|
|
public function linkToRouteAbsolute($routeName, $arguments = array());
|
|
|
|
|
2013-09-26 20:41:19 +04:00
|
|
|
/**
|
|
|
|
* Returns an URL for an image or file
|
|
|
|
* @param string $appName the name of the app
|
|
|
|
* @param string $file the name of the file
|
2015-04-18 17:03:37 +03:00
|
|
|
* @param array $args array with param=>value, will be appended to the returned url
|
|
|
|
* The value of $args will be urlencoded
|
2013-09-26 20:41:19 +04:00
|
|
|
* @return string the url
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-26 20:41:19 +04:00
|
|
|
*/
|
2015-04-18 17:03:37 +03:00
|
|
|
public function linkTo($appName, $file, $args = array());
|
2013-09-26 20:41:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the link to an image, like linkTo but only with prepending img/
|
|
|
|
* @param string $appName the name of the app
|
|
|
|
* @param string $file the name of the file
|
|
|
|
* @return string the url
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-26 20:41:19 +04:00
|
|
|
*/
|
|
|
|
public function imagePath($appName, $file);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes an URL absolute
|
2014-11-24 18:24:26 +03:00
|
|
|
* @param string $url the url in the ownCloud host
|
2013-09-26 20:41:19 +04:00
|
|
|
* @return string the absolute version of the url
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2013-09-26 20:41:19 +04:00
|
|
|
*/
|
|
|
|
public function getAbsoluteURL($url);
|
2014-11-24 18:24:26 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return string url to the online documentation
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-11-24 18:24:26 +03:00
|
|
|
*/
|
|
|
|
public function linkToDocs($key);
|
2017-06-15 13:35:16 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string base url of the current request
|
|
|
|
* @since 13.0.0
|
|
|
|
*/
|
|
|
|
public function getBaseUrl();
|
2013-09-26 20:41:19 +04:00
|
|
|
}
|