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
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
8229722779
commit
1477b4b96d
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue