*/ class Mage_Log_Model_Log extends Mage_Core_Model_Abstract { const XML_LOG_CLEAN_DAYS = 'system/log/clean_after_day'; /** * Init Resource Model * */ protected function _construct() { $this->_init('log/log'); } public function getLogCleanTime() { return Mage::getStoreConfig(self::XML_LOG_CLEAN_DAYS) * 60 * 60 * 24; } /** * Clean Logs * * @return Mage_Log_Model_Log */ public function clean() { $this->getResource()->clean($this); return $this; } }