products catalog view template show external product catalogs
CI / testsuite (mysql, 8.1, ) (push) Failing after 1s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 1s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 1s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 1s Details
CI / Coding Standard & Static Analysis (push) Failing after 1s Details

This commit is contained in:
Brandon Shipley 2025-03-31 19:13:23 -07:00
parent 8e778cce57
commit 6fc52c8bd6
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 32 additions and 0 deletions

View File

@ -58,6 +58,38 @@
</div> </div>
<?php endif; ?> <?php endif; ?>
</div> </div>
<div class="related">
<h4><?= __('External Product Catalog API\'s ') ?></h4>
<?php if (!empty($productCatalog->external_product_catalogs)) : ?>
<div class="table-responsive">
<table>
<tr>
<th><?= __('Name') ?></th>
<th><?= __('Category Description') ?></th>
<th><?= __('Enabled') ?></th>
<th class="actions"><?= __('Actions') ?></th>
</tr>
<?php foreach ($productCatalog->external_product_catalogs as $externalProductCatalog) : ?>
<?php
/**
* @var \CakeProducts\Model\Entity\ExternalProductCatalog $externalProductCatalog
*/
?>
<tr>
<td><?= h($externalProductCatalog->base_url) ?></td>
<td><?= h($externalProductCatalog->api_url) ?></td>
<td><?= h($externalProductCatalog->_joinData->enabled) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['controller' => 'ExternalProductCatalogs', 'action' => 'view', $externalProductCatalog->id]) ?>
<?= $this->Html->link(__('Edit'), ['controller' => 'ExternalProductCatalogs', 'action' => 'edit', $externalProductCatalog->id]) ?>
<?= $this->Form->postLink(__('Delete'), ['controller' => 'ExternalProductCatalogsProductCatalogs', 'action' => 'delete', $externalProductCatalog->_joinData->id], ['confirm' => __('Are you sure you want to delete # {0}?', $externalProductCatalog->id)]) ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<?php endif; ?>
</div>
</div> </div>
</div> </div>
</div> </div>