allow customizing entity class but default to CakeProducts entities - catalogs + categories
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:
Brandon Shipley 2025-03-28 02:34:50 -07:00
parent b6230817eb
commit 3f461cabb8
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 7 additions and 1 deletions

View File

@ -47,6 +47,9 @@ class ProductCatalogsTable extends Table
$this->setDisplayField('name'); $this->setDisplayField('name');
$this->setPrimaryKey('id'); $this->setPrimaryKey('id');
$this->setEntityClass(
Configure::read('CakeProducts.ProductCatalogs.entity', 'CakeProducts\Model\Entity\ProductCatalog')
);
$this->hasMany('ProductCategories', [ $this->hasMany('ProductCategories', [
'className' => 'CakeProducts.ProductCategories', 'className' => 'CakeProducts.ProductCategories',
]); ]);

View File

@ -3,6 +3,7 @@ declare(strict_types=1);
namespace CakeProducts\Model\Table; namespace CakeProducts\Model\Table;
use Cake\Core\Configure;
use Cake\Datasource\EntityInterface; use Cake\Datasource\EntityInterface;
use Cake\Datasource\ResultSetInterface; use Cake\Datasource\ResultSetInterface;
use Cake\ORM\Association\BelongsTo; use Cake\ORM\Association\BelongsTo;
@ -61,7 +62,9 @@ class ProductCategoriesTable extends Table
$this->setTable('product_categories'); $this->setTable('product_categories');
$this->setDisplayField('name'); $this->setDisplayField('name');
$this->setPrimaryKey('id'); $this->setPrimaryKey('id');
$this->setEntityClass(
Configure::read('CakeProducts.ProductCategories.entity', 'CakeProducts\Model\Entity\ProductCategory')
);
$this->addBehavior('Tree'); $this->addBehavior('Tree');
$this->belongsTo('ProductCatalogs', [ $this->belongsTo('ProductCatalogs', [