dont need to set the config key or the default table anymore - will default to plugin name + table name
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-29 01:11:09 -07:00
parent 8229722779
commit 1477b4b96d
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
7 changed files with 30 additions and 15 deletions

View File

@ -25,8 +25,8 @@ class ExternalProductCatalogsController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.ExternalProductCatalogs';
$this->_tableConfigKey = 'CakeProducts.ExternalProductCatalogs.table';
// $this->_defaultTable = 'CakeProducts.ExternalProductCatalogs';
// $this->_tableConfigKey = 'CakeProducts.ExternalProductCatalogs.table';
}
/**

View File

@ -28,8 +28,8 @@ class ProductCatalogsController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.ProductCatalogs';
$this->_tableConfigKey = 'CakeProducts.ProductCatalogs.table';
// $this->_defaultTable = 'CakeProducts.ProductCatalogs';
// $this->_tableConfigKey = 'CakeProducts.ProductCatalogs.table';
}
/**

View File

@ -25,8 +25,8 @@ class ProductCategoriesController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.ProductCategories';
$this->_tableConfigKey = 'CakeProducts.ProductCategories.table';
// $this->_defaultTable = 'CakeProducts.ProductCategories';
// $this->_tableConfigKey = 'CakeProducts.ProductCategories.table';
}
/**

View File

@ -25,8 +25,8 @@ class ProductCategoryAttributeOptionsController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.ProductCategoryAttributeOptions';
$this->_tableConfigKey = 'CakeProducts.ProductCategoryAttributeOptions.table';
// $this->_defaultTable = 'CakeProducts.ProductCategoryAttributeOptions';
// $this->_tableConfigKey = 'CakeProducts.ProductCategoryAttributeOptions.table';
}
/**

View File

@ -29,8 +29,8 @@ class ProductCategoryAttributesController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.ProductCategoryAttributes';
$this->_tableConfigKey = 'CakeProducts.ProductCategoryAttributes.table';
// $this->_defaultTable = 'CakeProducts.ProductCategoryAttributes';
// $this->_tableConfigKey = 'CakeProducts.ProductCategoryAttributes.table';
}
/**

View File

@ -25,8 +25,8 @@ class ProductsController extends AppController
public function initialize(): void
{
parent::initialize(); // TODO: Change the autogenerated stub
$this->_defaultTable = 'CakeProducts.Products';
$this->_tableConfigKey = 'CakeProducts.Products.table';
// $this->_defaultTable = 'CakeProducts.Products';
// $this->_tableConfigKey = 'CakeProducts.Products.table';
}
/**

View File

@ -14,9 +14,11 @@ trait OverrideTableTrait
protected ?Table $_table = null;
/**
* @var string
* This object's default table alias.
*
* @var string|null
*/
protected string $_defaultTable = '';
protected ?string $defaultTable = null;
/**
* @var string
@ -33,15 +35,28 @@ trait OverrideTableTrait
if ($this->_table instanceof Table) {
return $this->_table;
}
$this->getTableConfigKey();
$table = $tableName;
if (!isset($table)) {
$table = $this->_tableConfigKey && Configure::read($this->_tableConfigKey) ? Configure::read($this->_tableConfigKey) : $this->_defaultTable;
$table = $this->defaultTable;
if (Configure::read($this->_tableConfigKey)) {
$table = Configure::read($this->_tableConfigKey);
}
}
$this->_table = TableRegistry::getTableLocator()->get($table);
return $this->_table;
}
protected function getTableConfigKey()
{
if (!$this->_tableConfigKey) {
$this->_tableConfigKey = $this->getPlugin() . '.' . $this->defaultTable . '.table';
}
return $this->_tableConfigKey;
}
/**
* Set the users table
*