blob: 47485634872500571d7576b3bdb66994603dff2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?php
namespace Sabre\HTTP;
use Sabre\URI;
/**
* URL utility class
*
* Note: this class is deprecated. All its functionality moved to functions.php
* or sabre\uri.
*
* @deprectated
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class URLUtil {
/**
* Encodes the path of a url.
*
* slashes (/) are treated as path-separators.
*
* @deprecated use \Sabre\HTTP\encodePath()
* @param string $path
* @return string
*/
static function encodePath($path) {
return encodePath($path);
}
/**
* Encodes a 1 segment of a path
*
* Slashes are considered part of the name, and are encoded as %2f
*
* @deprecated use \Sabre\HTTP\encodePathSegment()
* @param string $pathSegment
* @return string
*/
static function encodePathSegment($pathSegment) {
return encodePathSegment($pathSegment);
}
/**
* Decodes a url-encoded path
*
* @deprecated use \Sabre\HTTP\decodePath
* @param string $path
* @return string
*/
static function decodePath($path) {
return decodePath($path);
}
/**
* Decodes a url-encoded path segment
*
* @deprecated use \Sabre\HTTP\decodePathSegment()
* @param string $path
* @return string
*/
static function decodePathSegment($path) {
return decodePathSegment($path);
}
/**
* Returns the 'dirname' and 'basename' for a path.
*
* @deprecated Use Sabre\Uri\split().
* @param string $path
* @return array
*/
static function splitPath($path) {
return Uri\split($path);
}
/**
* Resolves relative urls, like a browser would.
*
* @deprecated Use Sabre\Uri\resolve().
* @param string $basePath
* @param string $newPath
* @return string
*/
static function resolve($basePath, $newPath) {
return Uri\resolve($basePath, $newPath);
}
}
|