template updates - htmx on categories form
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 0s
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 0s
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
a9a79ffb1d
commit
9e5df45f59
|
@ -21,7 +21,6 @@
|
||||||
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
||||||
echo $this->Form->control('base_url');
|
echo $this->Form->control('base_url');
|
||||||
echo $this->Form->control('api_url');
|
echo $this->Form->control('api_url');
|
||||||
echo $this->Form->control('deleted', ['empty' => true]);
|
|
||||||
echo $this->Form->control('enabled');
|
echo $this->Form->control('enabled');
|
||||||
?>
|
?>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
||||||
echo $this->Form->control('base_url');
|
echo $this->Form->control('base_url');
|
||||||
echo $this->Form->control('api_url');
|
echo $this->Form->control('api_url');
|
||||||
echo $this->Form->control('deleted', ['empty' => true]);
|
|
||||||
echo $this->Form->control('enabled');
|
echo $this->Form->control('enabled');
|
||||||
?>
|
?>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
|
@ -18,13 +18,7 @@
|
||||||
<?= $this->Form->create($productCategory) ?>
|
<?= $this->Form->create($productCategory) ?>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><?= __('Add Product Category') ?></legend>
|
<legend><?= __('Add Product Category') ?></legend>
|
||||||
<?php
|
<?= $this->element('ProductCategories/form'); ?>
|
||||||
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
|
||||||
echo $this->Form->control('name');
|
|
||||||
echo $this->Form->control('category_description');
|
|
||||||
echo $this->Form->control('parent_id', ['options' => $parentProductCategories, 'empty' => true]);
|
|
||||||
echo $this->Form->control('enabled');
|
|
||||||
?>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?= $this->Form->button(__('Submit')) ?>
|
<?= $this->Form->button(__('Submit')) ?>
|
||||||
<?= $this->Form->end() ?>
|
<?= $this->Form->end() ?>
|
||||||
|
|
|
@ -23,13 +23,7 @@
|
||||||
<?= $this->Form->create($productCategory) ?>
|
<?= $this->Form->create($productCategory) ?>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend><?= __('Edit Product Category') ?></legend>
|
<legend><?= __('Edit Product Category') ?></legend>
|
||||||
<?php
|
<?= $this->element('ProductCategories/form'); ?>
|
||||||
echo $this->Form->control('product_catalog_id', ['options' => $productCatalogs]);
|
|
||||||
echo $this->Form->control('name');
|
|
||||||
echo $this->Form->control('category_description');
|
|
||||||
echo $this->Form->control('parent_id', ['options' => $parentProductCategories, 'empty' => true]);
|
|
||||||
echo $this->Form->control('enabled');
|
|
||||||
?>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?= $this->Form->button(__('Submit')) ?>
|
<?= $this->Form->button(__('Submit')) ?>
|
||||||
<?= $this->Form->end() ?>
|
<?= $this->Form->end() ?>
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @var \App\View\AppView $this
|
||||||
|
* @var iterable<\Cake\Datasource\EntityInterface> $productCategories
|
||||||
|
*/
|
||||||
|
|
||||||
|
$this->setLayout('ajax');
|
||||||
|
|
||||||
|
?>
|
||||||
|
<option value="">Select a parent (optional)</option>
|
||||||
|
<?php foreach ($productCategories as $productCategoryId => $productCategoryName): ?>
|
||||||
|
<option value="<?= $productCategoryId; ?>" <?= $this->request->getQuery('category_id') == $productCategoryId ? 'selected="selected"' : ''; ?>><?= $productCategoryName; ?></option>
|
||||||
|
<?php endforeach; ?>
|
|
@ -0,0 +1,30 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @var \App\View\AppView $this
|
||||||
|
* @var \Cake\Datasource\EntityInterface $productCategory
|
||||||
|
* @var \Cake\Collection\CollectionInterface|string[] $productCatalogs
|
||||||
|
* @var string|null $prefix
|
||||||
|
*/
|
||||||
|
|
||||||
|
echo $this->Form->control('product_catalog_id', [
|
||||||
|
'options' => $productCatalogs,
|
||||||
|
'hx-trigger' => 'change, load delay:1s',
|
||||||
|
'hx-get' => $this->Url->build([
|
||||||
|
'plugin' => 'CakeProducts',
|
||||||
|
'controller' => 'ProductCategories',
|
||||||
|
'action' => 'select',
|
||||||
|
'?' => [
|
||||||
|
'category_id' => $productCategory->parent_id ?? '',
|
||||||
|
],
|
||||||
|
]),
|
||||||
|
'hx-target' => '#product_category_parent_id',
|
||||||
|
]);
|
||||||
|
echo $this->Form->control('name');
|
||||||
|
echo $this->Form->control('category_description');
|
||||||
|
echo $this->Form->control('parent_id', [
|
||||||
|
'options' => $parentProductCategories,
|
||||||
|
'empty' => true,
|
||||||
|
'id' => 'product_category_parent_id',
|
||||||
|
]);
|
||||||
|
echo $this->Form->control('enabled');
|
||||||
|
?>
|
Loading…
Reference in New Issue