summaryrefslogtreecommitdiff
path: root/framework/Web
diff options
context:
space:
mode:
authorxue <>2006-02-02 23:53:32 +0000
committerxue <>2006-02-02 23:53:32 +0000
commit81d3bc50d96a11bd411f8f0fa5831a85228ffe4e (patch)
tree16cc6afdef11be7708502ebf2f22c8486134710f /framework/Web
parent4724cb4ed35c6cdb31e2c3381002f62bd6530e5a (diff)
Modified onSaveState to saveState, and onLoadState to loadState.
Diffstat (limited to 'framework/Web')
-rw-r--r--framework/Web/UI/TControl.php14
-rw-r--r--framework/Web/UI/TPage.php10
-rw-r--r--framework/Web/UI/WebControls/TDataGrid.php8
-rw-r--r--framework/Web/UI/WebControls/TDataList.php8
-rw-r--r--framework/Web/UI/WebControls/TListControl.php8
-rw-r--r--framework/Web/UI/WebControls/TRepeater.php8
6 files changed, 25 insertions, 31 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index b5fccd7b..5c959b7f 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -1267,22 +1267,18 @@ class TControl extends TComponent
* This method is invoked when control state is to be saved.
* You can override this method to do last step state saving.
* Parent implementation must be invoked.
- * @param TEventParameter event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
- $this->raiseEvent('OnSaveState',$this,$param);
}
/**
* This method is invoked right after the control has loaded its state.
* You can override this method to initialize data from the control state.
* Parent implementation must be invoked.
- * @param TEventParameter
*/
- public function onLoadState($param)
+ public function loadState()
{
- $this->raiseEvent('OnLoadState',$this,$param);
}
/**
@@ -1334,10 +1330,10 @@ class TControl extends TComponent
if(!empty($state))
$this->_rf[self::RF_CHILD_STATE]=&$state;
$this->_stage=self::CS_STATE_LOADED;
- $this->onLoadState(null);
}
- else // no state to load and thus no need onLoadState()
+ else
$this->_stage=self::CS_STATE_LOADED;
+ $this->loadState();
}
/**
@@ -1347,7 +1343,7 @@ class TControl extends TComponent
*/
final protected function &saveStateRecursive($needViewState=true)
{
- $this->onSaveState(null);
+ $this->saveState();
$needViewState=($needViewState && !($this->_flags & self::IS_DISABLE_VIEWSTATE));
$state=array();
if($this->getHasControls())
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php
index 5f583f0b..11f89ab5 100644
--- a/framework/Web/UI/TPage.php
+++ b/framework/Web/UI/TPage.php
@@ -525,11 +525,10 @@ class TPage extends TTemplateControl
* This method is invoked when control state is to be saved.
* You can override this method to do last step state saving.
* Parent implementation must be invoked.
- * @param TEventParameter event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
- parent::onSaveState($param);
+ parent::saveState();
$this->setViewState('ControlsRequiringPostBack',$this->_controlsRegisteredForPostData,array());
}
@@ -537,12 +536,11 @@ class TPage extends TTemplateControl
* This method is invoked right after the control has loaded its state.
* You can override this method to initialize data from the control state.
* Parent implementation must be invoked.
- * @param TEventParameter
*/
- public function onLoadState($param)
+ public function loadState()
{
+ parent::loadState();
$this->_controlsRequiringPostData=$this->getViewState('ControlsRequiringPostBack',array());
- parent::onLoadState($param);
}
/**
diff --git a/framework/Web/UI/WebControls/TDataGrid.php b/framework/Web/UI/WebControls/TDataGrid.php
index 8b159905..2636bd05 100644
--- a/framework/Web/UI/WebControls/TDataGrid.php
+++ b/framework/Web/UI/WebControls/TDataGrid.php
@@ -718,10 +718,10 @@ class TDataGrid extends TBaseDataList
/**
* Saves item count in viewstate.
* This method is invoked right before control state is to be saved.
- * @param mixed event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
+ parent::saveState();
if($this->_items)
$this->setViewState('ItemCount',$this->_items->getCount(),0);
else
@@ -740,10 +740,10 @@ class TDataGrid extends TBaseDataList
/**
* Loads item count information from viewstate.
* This method is invoked right after control state is loaded.
- * @param mixed event parameter
*/
- public function onLoadState($param)
+ public function loadState()
{
+ parent::loadState();
if(!$this->getIsDataBound())
{
$state=$this->getViewState('ColumnState',array());
diff --git a/framework/Web/UI/WebControls/TDataList.php b/framework/Web/UI/WebControls/TDataList.php
index f5292220..d04acdaf 100644
--- a/framework/Web/UI/WebControls/TDataList.php
+++ b/framework/Web/UI/WebControls/TDataList.php
@@ -1018,10 +1018,10 @@ class TDataList extends TBaseDataList implements INamingContainer, IRepeatInfoUs
/**
* Saves item count in viewstate.
* This method is invoked right before control state is to be saved.
- * @param mixed event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
+ parent::saveState();
if($this->_items)
$this->setViewState('ItemCount',$this->_items->getCount(),0);
else
@@ -1031,10 +1031,10 @@ class TDataList extends TBaseDataList implements INamingContainer, IRepeatInfoUs
/**
* Loads item count information from viewstate.
* This method is invoked right after control state is loaded.
- * @param mixed event parameter
*/
- public function onLoadState($param)
+ public function loadState()
{
+ parent::loadState();
if(!$this->getIsDataBound())
$this->restoreItemsFromViewState();
$this->clearViewState('ItemCount');
diff --git a/framework/Web/UI/WebControls/TListControl.php b/framework/Web/UI/WebControls/TListControl.php
index 2b40bfa8..169cc72c 100644
--- a/framework/Web/UI/WebControls/TListControl.php
+++ b/framework/Web/UI/WebControls/TListControl.php
@@ -177,10 +177,10 @@ abstract class TListControl extends TDataBoundControl
/**
* Saves items into viewstate.
* This method is invoked right before control state is to be saved.
- * @param mixed event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
+ parent::saveState();
if($this->_items)
$this->setViewState('Items',$this->_items->saveState(),null);
else
@@ -190,10 +190,10 @@ abstract class TListControl extends TDataBoundControl
/**
* Loads items from viewstate.
* This method is invoked right after control state is loaded.
- * @param mixed event parameter
*/
- public function onLoadState($param)
+ public function loadState()
{
+ parent::loadState();
$this->_loadedFromState=true;
if(!$this->getIsDataBound())
{
diff --git a/framework/Web/UI/WebControls/TRepeater.php b/framework/Web/UI/WebControls/TRepeater.php
index 43b70d2d..fc997323 100644
--- a/framework/Web/UI/WebControls/TRepeater.php
+++ b/framework/Web/UI/WebControls/TRepeater.php
@@ -305,10 +305,10 @@ class TRepeater extends TDataBoundControl implements INamingContainer
/**
* Saves item count in viewstate.
* This method is invoked right before control state is to be saved.
- * @param mixed event parameter
*/
- public function onSaveState($param)
+ public function saveState()
{
+ parent::saveState();
if($this->_items)
$this->setViewState('ItemCount',$this->_items->getCount(),0);
else
@@ -318,10 +318,10 @@ class TRepeater extends TDataBoundControl implements INamingContainer
/**
* Loads item count information from viewstate.
* This method is invoked right after control state is loaded.
- * @param mixed event parameter
*/
- public function onLoadState($param)
+ public function loadState()
{
+ parent::loadState();
if(!$this->getIsDataBound())
$this->restoreItemsFromViewState();
$this->clearViewState('ItemCount');