Algolia_Algoliasearch_Helper_Data::moveProductsIndex PHP Method

moveProductsIndex() public method

public moveProductsIndex ( $storeId )
    public function moveProductsIndex($storeId)
    {
        $indexName = $this->product_helper->getIndexName($storeId);
        $tmpIndexName = $this->product_helper->getIndexName($storeId, true);
        $this->algolia_helper->moveIndex($tmpIndexName, $indexName);
    }

Usage Example

 public function moveProductsTmpIndex(Varien_Object $event)
 {
     $storeId = $event->getStoreId();
     $this->helper->moveProductsIndex($storeId);
 }