nyroFwk
0.2
var
www
users
nyrofwk
src
nyro
response
response/abstract.class.php
Go to the documentation of this file.
1
<?php
10
abstract
class
response_abstract
extends
object
{
11
17
protected
$content
;
18
24
protected
$proxy
= null;
25
31
public
function
getProxy
() {
32
return
factory::get
(
'response_proxy'
);
33
}
34
40
public
function
getContent
() {
41
return
$this->content
;
42
}
43
49
public
function
setContent
(
$content
) {
50
$this->content =
$content
;
51
}
52
59
public
function
comment
($comment) {
60
return
''
;
61
}
62
68
public
function
canGlobalCache
() {
69
return
true
;
70
}
71
77
public
function
getVarsForGlobalCache
() {
78
return
null;
79
}
80
87
public
function
setVarsFromGlobalCache
($vars) {}
88
92
abstract
public
function
send
();
93
99
abstract
public
function
sendText
($text);
100
104
public
function
__call
($func, $prm) {}
105
106
public
function
__toString
() {
107
return
''
;
108
}
109
110
}
response_abstract\comment
comment($comment)
Definition:
response/abstract.class.php:59
response_abstract\setVarsFromGlobalCache
setVarsFromGlobalCache($vars)
Definition:
response/abstract.class.php:87
response_abstract
Definition:
response/abstract.class.php:10
response_abstract\send
send()
response_abstract\canGlobalCache
canGlobalCache()
Definition:
response/abstract.class.php:68
response_abstract\getContent
getContent()
Definition:
response/abstract.class.php:40
response_abstract\$content
$content
Definition:
response/abstract.class.php:17
response_abstract\__call
__call($func, $prm)
Definition:
response/abstract.class.php:104
response_abstract\getVarsForGlobalCache
getVarsForGlobalCache()
Definition:
response/abstract.class.php:77
response_abstract\getProxy
getProxy()
Definition:
response/abstract.class.php:31
object
Definition:
object.class.php:10
response_abstract\sendText
sendText($text)
response_abstract\__toString
__toString()
Definition:
response/abstract.class.php:106
response_abstract\$proxy
$proxy
Definition:
response/abstract.class.php:24
response_abstract\setContent
setContent($content)
Definition:
response/abstract.class.php:49
factory\get
static get($className, array $cfg=array())
Definition:
factory.class.php:192
Generated on Sun Oct 15 2017 22:25:20 for nyroFwk by
1.8.13