Source for file IStatePersistent.php

Documentation is available at IStatePersistent.php

  1. 1: <?php
  2. 2:  
  3. 3: /**
  4. 4:  * Nette Framework
  5. 5:  *
  6. 6:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  7. 7:  * @license    http://nettephp.com/license  Nette license
  8. 8:  * @link       http://nettephp.com
  9. 9:  * @category   Nette
  10. 10:  * @package    Nette\Application
  11. 11:  */
  12. 12:  
  13. 13:  
  14. 14:  
  15. 15: /**
  16. 16:  * Component with ability to save and load its state.
  17. 17:  *
  18. 18:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  19. 19:  * @package    Nette\Application
  20. 20:  */
  21. 22: {
  22. 23:  
  23. 24:     /**
  24. 25:      * Loads state informations.
  25. 26:      * @param  array 
  26. 27:      * @return void 
  27. 28:      */
  28. 29:     function loadState(array $params);
  29. 30:  
  30. 31:     /**
  31. 24: /**
  32. 25:      * Saves state informations for next request.
  33. 26:      * @param  array 
  34. 27:      * @return void 
  35. 35:      */
  36. 36:     function saveState(array $params);
  37. 37:  
  38. 38: }