public function generateProductsFullPathAction()
 {
     $products = new Catalog_Model_Mapper_Products();
     $freePathProducts = $products->fetchFreeRowColumn('full_path');
     foreach ($freePathProducts as $product) {
         $product->fullPath = $products->generateFullPath($product->id);
         $mapper = new Catalog_Model_Mapper_Products();
         $mapper->save($product);
     }
     return $this->view->entries = $products->fetchFreeRowColumn('full_path');
 }