contain category attributse when viewing category
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 0s
Details
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 0s
Details
This commit is contained in:
parent
6fc52c8bd6
commit
5a2582a333
|
@ -53,7 +53,13 @@ class ProductCategoriesController extends AppController
|
||||||
*/
|
*/
|
||||||
public function view($id = null)
|
public function view($id = null)
|
||||||
{
|
{
|
||||||
$productCategory = $this->getTable()->get($id, contain: ['ProductCatalogs', 'ParentProductCategories', 'ChildProductCategories']);
|
$productCategory = $this->getTable()->get($id, contain: [
|
||||||
|
'ProductCatalogs',
|
||||||
|
'ParentProductCategories',
|
||||||
|
'ChildProductCategories',
|
||||||
|
'ProductCategoryAttributes',
|
||||||
|
'ProductCategoryAttributes.ProductCategoryAttributeOptions',
|
||||||
|
]);
|
||||||
$this->set(compact('productCategory'));
|
$this->set(compact('productCategory'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,35 @@
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="related">
|
||||||
|
<h4><?= __('Related Category Attributes') ?></h4>
|
||||||
|
<?php if (!empty($productCategory->product_category_attributes)) : ?>
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th><?= __('Name') ?></th>
|
||||||
|
<th><?= __('Options') ?></th>
|
||||||
|
<th><?= __('Enabled') ?></th>
|
||||||
|
<th class="actions"><?= __('Actions') ?></th>
|
||||||
|
</tr>
|
||||||
|
<?php foreach ($productCategory->product_category_attributes as $productCategoryAttribute) : ?>
|
||||||
|
<tr>
|
||||||
|
<td><?= h($productCategoryAttribute->name) ?></td>
|
||||||
|
<td>
|
||||||
|
options
|
||||||
|
</td>
|
||||||
|
<td><?= h($productCategoryAttribute->enabled) ?></td>
|
||||||
|
<td class="actions">
|
||||||
|
<?= $this->Html->link(__('View'), ['controller' => 'ProductCategoryAttributes', 'action' => 'view', $productCategoryAttribute->id]) ?>
|
||||||
|
<?= $this->Html->link(__('Edit'), ['controller' => 'ProductCategoryAttributes', 'action' => 'edit', $productCategoryAttribute->id]) ?>
|
||||||
|
<?= $this->Form->postLink(__('Delete'), ['controller' => 'ProductCategoryAttributes', 'action' => 'delete', $productCategoryAttribute->id], ['confirm' => __('Are you sure you want to delete # {0}?', $productCategoryAttribute->id)]) ?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue