Public Member Functions | |
__construct () | |
addChanges ($code, $userId, $data) | |
Protected Attributes | |
$_changeTable = null | |
$_changeInfoTable = null |
Definition at line 34 of file History.php.
__construct | ( | ) |
Definition at line 39 of file History.php.
00040 { 00041 $this->_changeTable = Mage::getSingleton('core/resource')->getTableName('core/data_change'); 00042 $this->_changeInfoTable = Mage::getSingleton('core/resource')->getTableName('core/data_change_info'); 00043 }
addChanges | ( | $ | code, | |
$ | userId, | |||
$ | data | |||
) |
Add data changes
$data = array( [$tableName] => array( [pk_value] [type] = 'insert' || 'update' || 'delete' [before] [after] ) )
string | $code | |
int | $userId | |
array | $data |
Definition at line 61 of file History.php.
$_changeInfoTable = null [protected] |
Definition at line 37 of file History.php.
$_changeTable = null [protected] |
Definition at line 36 of file History.php.