summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2005-11-11 04:11:42 +0000
committerxue <>2005-11-11 04:11:42 +0000
commit5147906809d0fb77b75080da7fd0112a6f6f51f7 (patch)
tree9f5370e3bea19235032e6a770ffc75f5363cad12 /framework
parent914776d70153e2db570704def66e03446499c7a3 (diff)
Added Request, Response, Session, User properties to TControl.
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/UI/TControl.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index 0d7fb333..ed6e7dd0 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -239,6 +239,38 @@ class TControl extends TComponent
}
/**
+ * @return THttpRequest the current user request
+ */
+ public function getRequest()
+ {
+ return Prado::getApplication()->getRequest();
+ }
+
+ /**
+ * @return THttpResponse the response
+ */
+ public function getResponse()
+ {
+ return Prado::getApplication()->getResponse();
+ }
+
+ /**
+ * @return THttpSession user session
+ */
+ public function getSession()
+ {
+ return Prado::getApplication()->getSession();
+ }
+
+ /**
+ * @return IUser user
+ */
+ public function getUser()
+ {
+ return Prado::getApplication()->getUser();
+ }
+
+ /**
* Returns the id of the control.
* Control ID can be either manually set or automatically generated.
* If $hideAutoID is true, automatically generated ID will be returned as an empty string.