loadStateRecursive() protected méthode

This method should only be used by framework developers.
protected loadStateRecursive ( &$state, $needViewState = true )
Exemple #1
0
 /**
  * Loads state (viewstate and controlstate) into a control and its children.
  * This method overrides the parent implementation by loading
  * cached state if available.
  * This method should only be used by framework developers.
  * @param array the collection of the state
  * @param boolean whether the viewstate should be loaded
  */
 protected function loadStateRecursive(&$state, $needViewState = true)
 {
     $st = unserialize($state);
     parent::loadStateRecursive($st, $needViewState);
 }