Prado\Web\UI\ActiveControls\TStyleDiff::getStyleDiff PHP Méthode

getStyleDiff() protected méthode

protected getStyleDiff ( ) : array
Résultat array list of changes to the control style.
    protected function getStyleDiff()
    {
        $diff = array_diff_assoc($this->getCombinedStyle($this->_new), $this->getCombinedStyle($this->_old));
        return count($diff) > 0 ? $diff : null;
    }