Public Member Functions | |
deleteByRateId ($rateId) | |
Protected Member Functions | |
_construct () |
Definition at line 33 of file Title.php.
_construct | ( | ) | [protected] |
Resource initialization
Reimplemented from Mage_Core_Model_Resource_Abstract.
Definition at line 35 of file Title.php.
00036 { 00037 $this->_init('tax/tax_calculation_rate_title', 'tax_calculation_rate_title_id'); 00038 }
deleteByRateId | ( | $ | rateId | ) |
Definition at line 40 of file Title.php.
00041 { 00042 $conn = $this->_getWriteAdapter(); 00043 $where = $conn->quoteInto('tax_calculation_rate_id = ?', $rateId); 00044 $conn->delete($this->getMainTable(), $where); 00045 }