Resource.php
3.69 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
namespace Phalcon\Assets {
/**
* Phalcon\Assets\Resource
*
* Represents an asset resource
*
*<code>
* $resource = new Phalcon\Assets\Resource('js', 'javascripts/jquery.js');
*</code>
*
*/
class Resource {
protected $_type;
protected $_path;
protected $_local;
protected $_filter;
protected $_attributes;
protected $_sourcePath;
protected $_targetPath;
protected $_targetUri;
/**
* \Phalcon\Assets\Resource constructor
*
* @param string $type
* @param string $path
* @param boolean $local
* @param boolean $filter
* @param array $attributes
*/
public function __construct($type, $path, $local=null, $filter=null, $attributes=null){ }
/**
* Sets the resource's type
*
* @param string $type
* @return \Phalcon\Assets\Resource
*/
public function setType($type){ }
/**
* Returns the type of resource
*
* @return string
*/
public function getType(){ }
/**
* Sets the resource's path
*
* @param string $path
* @return \Phalcon\Assets\Resource
*/
public function setPath($path){ }
/**
* Returns the URI/URL path to the resource
*
* @return string
*/
public function getPath(){ }
/**
* Sets if the resource is local or external
*
* @param boolean $local
* @return \Phalcon\Assets\Resource
*/
public function setLocal($local){ }
/**
* Returns whether the resource is local or external
*
* @return boolean
*/
public function getLocal(){ }
/**
* Sets if the resource must be filtered or not
*
* @param boolean $filter
* @return \Phalcon\Assets\Resource
*/
public function setFilter($filter){ }
/**
* Returns whether the resource must be filtered or not
*
* @return boolean
*/
public function getFilter(){ }
/**
* Sets extra HTML attributes
*
* @param array $attributes
* @return \Phalcon\Assets\Resource
*/
public function setAttributes($attributes){ }
/**
* Returns extra HTML attributes set in the resource
*
* @return array
*/
public function getAttributes(){ }
/**
* Sets a target uri for the generated HTML
*
* @param string $targetUri
* @return \Phalcon\Assets\Resource
*/
public function setTargetUri($targetUri){ }
/**
* Returns the target uri for the generated HTML
*
* @return string
*/
public function getTargetUri(){ }
/**
* Sets the resource's source path
*
* @param string $sourcePath
* @return \Phalcon\Assets\Resource
*/
public function setSourcePath($sourcePath){ }
/**
* Returns the resource's target path
*
* @return string
*/
public function getSourcePath(){ }
/**
* Sets the resource's target path
*
* @param string $targetPath
* @return \Phalcon\Assets\Resource
*/
public function setTargetPath($targetPath){ }
/**
* Returns the resource's target path
*
* @return string
*/
public function getTargetPath(){ }
/**
* Returns the content of the resource as an string
* Optionally a base path where the resource is located can be set
*
* @param string $basePath
* @return string
*/
public function getContent($basePath=null){ }
/**
* Returns the real target uri for the generated HTML
*
* @return string
*/
public function getRealTargetUri(){ }
/**
* Returns the complete location where the resource is located
*
* @param string $basePath
* @return string
*/
public function getRealSourcePath($basePath=null){ }
/**
* Returns the complete location where the resource must be written
*
* @param string $basePath
* @return string
*/
public function getRealTargetPath($basePath=null){ }
}
}