示例#1
0
 /**
  * Init indexing process after category data commit
  *
  * @return Mage_Catalog_Model_Category
  */
 public function afterCommitCallback()
 {
     parent::afterCommitCallback();
     if (!Mage::registry('m_prevent_indexing_on_save')) {
         $this->getIndexerSingleton()->processEntityAction($this, $this->_entity, Mage_Index_Model_Event::TYPE_SAVE);
     }
     return $this;
 }