blob: ac8ff9502592f82f9ef9e56d78ac27566b3fe89e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* TActiveControlAdapter and TCallbackPageStateTracker class file.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Web.UI.ActiveControls
*/
/**
* TScalarDiff class.
*
* Calculate the changes to a scalar value.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
class TScalarDiff extends TViewStateDiff
{
/**
* @return mixed update viewstate value.
*/
public function getDifference()
{
if(gettype($this->_new) === gettype($this->_old)
&& $this->_new === $this->_old)
return $this->_null;
else
return $this->_new;
}
}
|