00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Mage_CatalogSearch_Model_Mysql4_Query extends Mage_Core_Model_Mysql4_Abstract
00033 {
00034
00035
00036
00037
00038 protected function _construct()
00039 {
00040 $this->_init('catalogsearch/search_query', 'query_id');
00041 }
00042
00043
00044
00045
00046
00047
00048
00049
00050 protected function _getLoadSelect($field, $value, $object)
00051 {
00052 $select = $this->_getReadAdapter()->select()
00053 ->from($this->getMainTable())
00054 ->where($this->getMainTable().'.'.$field.'=?', $value);
00055 return $select;
00056 }
00057
00058
00059
00060
00061
00062
00063
00064
00065 public function loadByQuery(Mage_Core_Model_Abstract $object, $value)
00066 {
00067 $select = $this->_getReadAdapter()->select()
00068 ->from($this->getMainTable())
00069 ->where('query_text=:query_text')
00070 ->where('store_id=:store_id');
00071 $bind = array(
00072 ':query_text' => $value,
00073 ':store_id' => $object->getStoreId()
00074 );
00075 if ($data = $this->_getReadAdapter()->fetchRow($select, $bind)) {
00076 $object->setData($data);
00077 $this->_afterLoad($object);
00078 }
00079
00080 return $this;
00081 }
00082
00083 public function load(Mage_Core_Model_Abstract $object, $value, $field=null)
00084 {
00085 if (is_numeric($value)) {
00086 return parent::load($object, $value);
00087 }
00088 else {
00089 $this->loadByQuery($object,$value);
00090 }
00091 return $this;
00092 }
00093
00094 public function _beforeSave(Mage_Core_Model_Abstract $object)
00095 {
00096 $object->setUpdatedAt($this->formatDate(Mage::getModel('core/date')->gmtTimestamp()));
00097 return $this;
00098 }
00099 }