blob: ff8a4dfefa3e811c276d388c5a7e41fc51008193 (
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
35
36
37
38
39
40
|
<?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
*/
/**
* TMapCollectionDiff class.
*
* Calculate the changes to attributes collection.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
class TMapCollectionDiff extends TViewStateDiff
{
/**
* @return array updates to the attributes collection.
*/
public function getDifference()
{
if($this->_old===null)
{
return ($this->_new!==null) ? $this->_new->toArray() : $this->_null;
}
else
{
$new = $this->_new->toArray();
$old = $this->_old->toArray();
$diff = array_diff_assoc($new, $old);
return count($diff) > 0 ? $diff : $this->_null;
}
}
}
|