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 class Mage_Catalog_Model_Product_Flat_Indexer extends Mage_Core_Model_Abstract
00036 {
00037
00038
00039
00040
00041 protected function _construct()
00042 {
00043 $this->_init('catalog/product_flat_indexer');
00044 }
00045
00046
00047
00048
00049
00050
00051 protected function _getResource()
00052 {
00053 return parent::_getResource();
00054 }
00055
00056
00057
00058
00059
00060
00061
00062 public function rebuild($store = null)
00063 {
00064 $this->_getResource()->rebuild($store);
00065 return $this;
00066 }
00067
00068
00069
00070
00071
00072
00073
00074
00075 public function updateAttribute($attributeCode, $store = null)
00076 {
00077 if (is_null($store)) {
00078 foreach (Mage::app()->getStores() as $store) {
00079 $this->updateAttribute($attributeCode, $store->getId());
00080 }
00081
00082 return $this;
00083 }
00084
00085 $this->_getResource()->prepareFlatTable($store);
00086 $attribute = $this->_getResource()->getAttribute($attributeCode);
00087 $this->_getResource()->updateAttribute($attribute, $store);
00088 $this->_getResource()->updateChildrenDataFromParent($store);
00089
00090 return $this;
00091 }
00092
00093
00094
00095
00096
00097
00098
00099 public function prepareDataStorage($store = null)
00100 {
00101 if (is_null($store)) {
00102 foreach (Mage::app()->getStores() as $store) {
00103 $this->prepareDataStorage($store->getId());
00104 }
00105
00106 return $this;
00107 }
00108
00109 $this->_getResource()->prepareFlatTable($store);
00110
00111 return $this;
00112 }
00113
00114
00115
00116
00117
00118
00119
00120 public function updateEventAttributes($store = null)
00121 {
00122 if (is_null($store)) {
00123 foreach (Mage::app()->getStores() as $store) {
00124 $this->updateEventAttributes($store->getId());
00125 }
00126
00127 return $this;
00128 }
00129
00130 $this->_getResource()->prepareFlatTable($store);
00131 $this->_getResource()->updateEventAttributes($store);
00132 $this->_getResource()->updateRelationProducts($store);
00133
00134 return $this;
00135 }
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145 public function updateProductStatus($productId, $status, $store = null)
00146 {
00147 if (is_null($store)) {
00148 foreach (Mage::app()->getStores() as $store) {
00149 $this->updateProductStatus($productId, $status, $store->getId());
00150 }
00151 return $this;
00152 }
00153
00154 if ($status == Mage_Catalog_Model_Product_Status::STATUS_ENABLED) {
00155 $this->_getResource()->updateProduct($productId, $store);
00156 $this->_getResource()->updateChildrenDataFromParent($store, $productId);
00157 }
00158 else {
00159 $this->_getResource()->removeProduct($productId, $store);
00160 }
00161
00162 return $this;
00163 }
00164
00165
00166
00167
00168
00169
00170
00171
00172 public function updateProduct($productIds, $store = null)
00173 {
00174 if (is_null($store)) {
00175 foreach (Mage::app()->getStores() as $store) {
00176 $this->updateProduct($productIds, $store->getId());
00177 }
00178 return $this;
00179 }
00180
00181 $this->_getResource()->removeProduct($productIds, $store);
00182 $this->_getResource()->updateProduct($productIds, $store);
00183 $this->_getResource()->updateRelationProducts($store, $productIds);
00184
00185 return $this;
00186 }
00187
00188
00189
00190
00191
00192
00193
00194
00195 public function saveProduct($productIds, $store = null)
00196 {
00197 if (is_null($store)) {
00198 foreach (Mage::app()->getStores() as $store) {
00199 $this->saveProduct($productIds, $store->getId());
00200 }
00201 return $this;
00202 }
00203
00204 $this->_getResource()->removeProduct($productIds, $store);
00205 $this->_getResource()->saveProduct($productIds, $store);
00206 $this->_getResource()->updateRelationProducts($store, $productIds);
00207
00208 return $this;
00209 }
00210
00211
00212
00213
00214
00215
00216
00217
00218 public function removeProduct($productIds, $store = null)
00219 {
00220 if (is_null($store)) {
00221 foreach (Mage::app()->getStores() as $store) {
00222 $this->removeProduct($productIds, $store->getId());
00223 }
00224 return $this;
00225 }
00226
00227 $this->_getResource()->removeProduct($productIds, $store);
00228
00229 return $this;
00230 }
00231
00232
00233
00234
00235
00236
00237
00238 public function deleteStore($store)
00239 {
00240 $this->_getResource()->deleteFlatTable($store);
00241 return $this;
00242 }
00243 }