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
00033
00034
00035
00036 class Mage_Core_Model_Mysql4_Url_Rewrite extends Mage_Core_Model_Mysql4_Abstract
00037 {
00038 protected $_tagTable;
00039
00040 protected function _construct()
00041 {
00042 $this->_init('core/url_rewrite', 'url_rewrite_id');
00043 $this->_tagTable = $this->getTable('url_rewrite_tag');
00044 }
00045
00046
00047
00048
00049
00050
00051 protected function _initUniqueFields()
00052 {
00053 $this->_uniqueFields = array(
00054 array(
00055 'field' => array('id_path','store_id','is_system'),
00056 'title' => Mage::helper('core')->__('Id path for specified store')
00057 ),
00058 array(
00059 'field' => array('request_path','store_id'),
00060 'title' => Mage::helper('core')->__('Request path for specified store'),
00061 )
00062 );
00063 return $this;
00064 }
00065
00066
00067
00068
00069
00070
00071
00072
00073 protected function _getLoadSelect($field, $value, $object)
00074 {
00075 $select = parent::_getLoadSelect($field, $value, $object);
00076
00077 if (!is_null($object->getStoreId())) {
00078 $select->where('store_id=0 or store_id=?', $object->getStoreId());
00079 $select->order('store_id', 'desc');
00080 }
00081
00082 return $select;
00083 }
00084 }