2024-11-25 02:38:29 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace CakeProducts\Controller;
|
|
|
|
|
2025-03-29 06:34:21 +00:00
|
|
|
use Cake\Core\Configure;
|
2024-11-25 02:38:29 +00:00
|
|
|
use Cake\Log\Log;
|
2025-03-29 06:34:21 +00:00
|
|
|
use Cake\ORM\Table;
|
|
|
|
use Cake\ORM\TableRegistry;
|
2024-11-25 02:38:29 +00:00
|
|
|
use CakeProducts\Controller\AppController;
|
2025-03-29 07:52:38 +00:00
|
|
|
use CakeProducts\Controller\Traits\OverrideTableTrait;
|
2024-11-25 02:38:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ExternalProductCatalogs Controller
|
|
|
|
*
|
|
|
|
* @property \CakeProducts\Model\Table\ExternalProductCatalogsTable $ExternalProductCatalogs
|
|
|
|
*/
|
|
|
|
class ExternalProductCatalogsController extends AppController
|
|
|
|
{
|
2025-03-29 07:52:38 +00:00
|
|
|
use OverrideTableTrait;
|
2025-03-29 06:34:21 +00:00
|
|
|
|
|
|
|
/**
|
2025-03-29 07:52:38 +00:00
|
|
|
* @return void
|
2025-03-29 06:34:21 +00:00
|
|
|
*/
|
2025-03-29 07:52:38 +00:00
|
|
|
public function initialize(): void
|
2025-03-29 06:34:21 +00:00
|
|
|
{
|
2025-03-29 07:52:38 +00:00
|
|
|
parent::initialize(); // TODO: Change the autogenerated stub
|
2025-03-29 08:11:09 +00:00
|
|
|
// $this->_defaultTable = 'CakeProducts.ExternalProductCatalogs';
|
|
|
|
// $this->_tableConfigKey = 'CakeProducts.ExternalProductCatalogs.table';
|
2025-03-29 06:34:21 +00:00
|
|
|
}
|
|
|
|
|
2024-11-25 02:38:29 +00:00
|
|
|
/**
|
|
|
|
* Index method
|
|
|
|
*
|
|
|
|
* @return \Cake\Http\Response|null|void Renders view
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$query = $this->ExternalProductCatalogs->find()
|
|
|
|
->contain(['ProductCatalogs']);
|
|
|
|
$externalProductCatalogs = $this->paginate($query);
|
|
|
|
|
|
|
|
$this->set(compact('externalProductCatalogs'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View method
|
|
|
|
*
|
|
|
|
* @param string|null $id External Product Catalog id.
|
|
|
|
* @return \Cake\Http\Response|null|void Renders view
|
|
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
|
|
*/
|
|
|
|
public function view($id = null)
|
|
|
|
{
|
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->get($id, contain: ['ProductCatalogs']);
|
|
|
|
$this->set(compact('externalProductCatalog'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add method
|
|
|
|
*
|
|
|
|
* @return \Cake\Http\Response|null|void Redirects on successful add, renders view otherwise.
|
|
|
|
*/
|
2025-03-27 08:11:41 +00:00
|
|
|
public function add()
|
2024-11-25 02:38:29 +00:00
|
|
|
{
|
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->newEmptyEntity();
|
|
|
|
if ($this->request->is('post')) {
|
2025-03-27 08:11:41 +00:00
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $this->request->getData());
|
|
|
|
if ($this->ExternalProductCatalogs->save($externalProductCatalog)) {
|
2024-11-25 02:38:29 +00:00
|
|
|
$this->Flash->success(__('The external product catalog has been saved.'));
|
|
|
|
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
|
|
}
|
2025-03-27 08:11:41 +00:00
|
|
|
Log::debug(print_r('$externalProductCatalog->getErrors() next - failed /add', true));
|
|
|
|
Log::debug(print_r($externalProductCatalog->getErrors(), true));
|
2024-11-25 02:38:29 +00:00
|
|
|
$this->Flash->error(__('The external product catalog could not be saved. Please, try again.'));
|
|
|
|
}
|
|
|
|
$productCatalogs = $this->ExternalProductCatalogs->ProductCatalogs->find('list', limit: 200)->all();
|
|
|
|
$this->set(compact('externalProductCatalog', 'productCatalogs'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit method
|
|
|
|
*
|
|
|
|
* @param string|null $id External Product Catalog id.
|
|
|
|
* @return \Cake\Http\Response|null|void Redirects on successful edit, renders view otherwise.
|
|
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
|
|
*/
|
|
|
|
public function edit($id = null)
|
|
|
|
{
|
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->get($id, contain: []);
|
|
|
|
if ($this->request->is(['patch', 'post', 'put'])) {
|
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $this->request->getData());
|
|
|
|
if ($this->ExternalProductCatalogs->save($externalProductCatalog)) {
|
|
|
|
$this->Flash->success(__('The external product catalog has been saved.'));
|
|
|
|
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
|
|
}
|
|
|
|
Log::debug(print_r('$externalProductCatalog->getErrors() next - failed /edit', true));
|
|
|
|
Log::debug(print_r($externalProductCatalog->getErrors(), true));
|
|
|
|
$this->Flash->error(__('The external product catalog could not be saved. Please, try again.'));
|
|
|
|
}
|
|
|
|
$productCatalogs = $this->ExternalProductCatalogs->ProductCatalogs->find('list', limit: 200)->all();
|
|
|
|
$this->set(compact('externalProductCatalog', 'productCatalogs'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete method
|
|
|
|
*
|
|
|
|
* @param string|null $id External Product Catalog id.
|
|
|
|
* @return \Cake\Http\Response|null Redirects to index.
|
|
|
|
* @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
|
|
|
|
*/
|
|
|
|
public function delete($id = null)
|
|
|
|
{
|
|
|
|
$this->request->allowMethod(['post', 'delete']);
|
|
|
|
$externalProductCatalog = $this->ExternalProductCatalogs->get($id);
|
|
|
|
if ($this->ExternalProductCatalogs->delete($externalProductCatalog)) {
|
|
|
|
$this->Flash->success(__('The external product catalog has been deleted.'));
|
|
|
|
} else {
|
|
|
|
$this->Flash->error(__('The external product catalog could not be deleted. Please, try again.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->redirect(['action' => 'index']);
|
|
|
|
}
|
|
|
|
}
|