ExternalProductCatalogsProductCatalogs->ProductCatalogs->find('list')->toArray(); $this->set(compact( 'productCatalogs')); } /** * Delete method * * @param string|null $id Customers Contact id. * @return Response|null Redirects to index. * @throws RecordNotFoundException When record not found. */ public function delete($id = null) { $this->request->allowMethod(['post', 'delete']); $externalProductCatalogProductCatalog = $this->ExternalProductCatalogsProductCatalogs->get($id); if ($this->ExternalProductCatalogsProductCatalogs->delete($externalProductCatalogProductCatalog)) { $this->Flash->success(__('The customers contact has been deleted.')); } else { $this->Flash->error(__('The customers contact could not be deleted. Please, try again.')); } return $this->redirect($this->referer([ 'controller' => 'ExternalProductCatalogs', 'action' => 'view', $externalProductCatalogProductCatalog->external_product_catalog_id, ])); } }