summaryrefslogtreecommitdiff
path: root/framework/Web/UI
diff options
context:
space:
mode:
authorxue <>2006-02-13 18:18:32 +0000
committerxue <>2006-02-13 18:18:32 +0000
commit1b20976d3c07fa7a1737556a5987c88476c4782d (patch)
treeb124e876a96f62ac3539e0917c97160145908b6e /framework/Web/UI
parentb24ba1d92683a609a614fe915d3424cbbf854052 (diff)
Added PagePath property to TPage.
Diffstat (limited to 'framework/Web/UI')
-rw-r--r--framework/Web/UI/TPage.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php
index 7a7cbce4..2e3dd68e 100644
--- a/framework/Web/UI/TPage.php
+++ b/framework/Web/UI/TPage.php
@@ -119,6 +119,7 @@ class TPage extends TTemplateControl
* @var TControl|string the control or the ID of the element on the page to be focused when the page is sent back to user
*/
private $_focus=null;
+ private $_pagePath='';
/**
* @var boolean whether or not to maintain page scroll position
*/
@@ -845,6 +846,16 @@ class TPage extends TTemplateControl
{
$this->_enableStateEncryption=TPropertyValue::ensureBoolean($value);
}
+
+ public function getPagePath()
+ {
+ return $this->_pagePath;
+ }
+
+ public function setPagePath($value)
+ {
+ $this->_pagePath=$value;
+ }
}
interface IPageStatePersister