public function indexAction()
 {
     //Categories
     $categories = new Catalog_Model_Mapper_Categories();
     //пустые значения Path
     $this->view->freeCategoriesPath = $categories->fetchFreeRowColumn('path');
     //пустые значения Full Path
     $this->view->freeCategoriesFullPath = $categories->fetchFreeRowColumn('full_path');
     //дубликаты Path
     $this->view->dubleCategoriesPath = $categories->fetchDublicateRowColumn('path');
     //дубликаты Full Path
     $this->view->dubleCategoriesFullPath = $categories->fetchDublicateRowColumn('full_path');
     //Products
     $products = new Catalog_Model_Mapper_Products();
     //пустые значения Path
     $this->view->freeProductsPath = $products->fetchFreeRowColumn('path');
     //пустые значения Full Path
     $this->view->freeProductsFullPath = $products->fetchFreeRowColumn('full_path');
     //дубликаты Path
     $this->view->dubleProductsPath = $products->fetchDublicateRowColumn('path');
     //дубликаты Full Path
     $this->view->dubleProductsFullPath = $products->fetchDublicateRowColumn('full_path');
     //Media
     $mediaMapper = new Media_Model_Mapper_Media();
     //пустые значения Path
     $this->view->freeMediaPath = $mediaMapper->fetchFreeRowColumn('path');
     //пустые значения Full Path
     $this->view->freeMediaFullPath = $mediaMapper->fetchFreeRowColumn('full_path');
     //дубликаты Path
     $this->view->dubleMediaPath = $mediaMapper->fetchDublicateRowColumn('path');
     //дубликаты Full Path
     $this->view->dubleMediaFullPath = $mediaMapper->fetchDublicateRowColumn('full_path');
 }