_db->query('TRUNCATE TABLE ' . $this->_db->quoteIdentifier($this->_getTableName())); return $this; } protected function _join(Zend_Db_Select $select = null) { $select = parent::_join($select); $select->joinLeft( $this->pairDNotFoundMode, "DNotFoundMode.id = {$this->_tableAlias}.modeId", array('referrerMode' => 'title') ); return $select; } public function getNotFoundModes() { return $this->_get4Select('DNotFoundMode'); } }