Skip to content

Commit

Permalink
Merge branch 'b-6.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieg committed Dec 13, 2019
2 parents 9effe77 + 26af934 commit b572c21
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 39 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -90,6 +90,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed missed deprecated getConfig and getSession method usages [PR-721](https://github.com/OXID-eSales/oxideshop_ce/pull/721)
- Improve oxseo::OXOBJECTID index to fit current queries [PR-466](https://github.com/OXID-eSales/oxideshop_ce/pull/466)
- Typos in CountryList::_getSecondSortFieldName doc [PR-741](https://github.com/OXID-eSales/oxideshop_ce/pull/741)
- Improved shopId doc and variable style [PR-748](https://github.com/OXID-eSales/oxideshop_ce/pull/748)

### Deprecated
- `OxidEsales\Eshop\Application\Model\UserPayment::$_sPaymentKey`
Expand Down
2 changes: 1 addition & 1 deletion source/Application/Controller/Admin/ShopConfiguration.php
Expand Up @@ -189,7 +189,7 @@ public function save()
* 'constraints' => constraints list as array[name] = constraint
* 'grouping' => grouping info as array[name] = grouping
*
* @param string $shopId Shop id
* @param int $shopId Shop id
* @param string $moduleId module to load (empty string is for base values)
*
* @return array
Expand Down
8 changes: 4 additions & 4 deletions source/Application/Model/CategoryList.php
Expand Up @@ -360,13 +360,13 @@ public function loadList()
}

/**
* setter for shopID
* setter for shopId
*
* @param int $sShopID ShopID
* @param int $sShopId ShopID
*/
public function setShopID($sShopID)
public function setShopID($sShopId)
{
$this->_sShopID = $sShopID;
$this->_sShopID = $sShopId;
}

/**
Expand Down
14 changes: 7 additions & 7 deletions source/Application/Model/User.php
Expand Up @@ -1296,7 +1296,7 @@ protected function _assignAddress($aDelAddress)
*
* @param string $userName login name
* @param string $password login password
* @param string $shopId shopid
* @param int $shopId shopid
* @param bool $isAdmin admin/non admin mode
*
* @deprecated since v6.4.0 (2019-03-15); `\OxidEsales\EshopCommunity\Internal\Domain\Authentication\Bridge\PasswordServiceBridgeInterface`
Expand Down Expand Up @@ -2371,7 +2371,7 @@ public function isMallAdmin()
*
* @param string $userName User
* @param string $password Password
* @param string $shopID Shop id
* @param int $shopId Shop id
*
* @throws UserException
*
Expand All @@ -2383,20 +2383,20 @@ public function isMallAdmin()
*
* @return void
*/
protected function _dbLogin(string $userName, $password, $shopID)
protected function _dbLogin(string $userName, $password, $shopId)
{
$database = \OxidEsales\Eshop\Core\DatabaseProvider::getDb();
$userId = $database->getOne($this->_getLoginQuery($userName, $password, $shopID, $this->isAdmin()));
$userId = $database->getOne($this->_getLoginQuery($userName, $password, $shopId, $this->isAdmin()));
if (!$userId) {
$userId = $database->getOne($this->_getLoginQueryHashedWithMD5($userName, $password, $shopID, $this->isAdmin()));
$userId = $database->getOne($this->_getLoginQueryHashedWithMD5($userName, $password, $shopId, $this->isAdmin()));
}

/** Return here to give other log-in mechanisms the possibility to be triggered */
if (!$userId) {
return;
}

$this->loadAuthenticatedUser($userName, $shopID);
$this->loadAuthenticatedUser($userName, $shopId);
$this->isOutdatedPasswordHashAlgorithmUsed = true;
}

Expand Down Expand Up @@ -2789,7 +2789,7 @@ private function formQueryPartForActiveUser(): string
* Updates given query. Method is for overriding.
*
* @param string $user
* @param string $shopId
* @param int $shopId
*
* @return string
*/
Expand Down
28 changes: 14 additions & 14 deletions source/Core/Config.php
Expand Up @@ -373,17 +373,17 @@ protected function _processSeoCall()
* Initialize configuration variables
*
* @throws \OxidEsales\Eshop\Core\Exception\DatabaseException
* @param int $shopID
* @param int $shopId
*/
public function initVars($shopID)
public function initVars($shopId)
{
$this->_loadVarsFromFile();

$this->_setDefaults();

$configLoaded = $this->_loadVarsFromDb($shopID);
$configLoaded = $this->_loadVarsFromDb($shopId);
// loading shop config
if (empty($shopID) || !$configLoaded) {
if (empty($shopId) || !$configLoaded) {
// if no config values where loaded (some problems with DB), throwing an exception
$exception = new \OxidEsales\Eshop\Core\Exception\DatabaseException(
"Unable to load shop config values from database",
Expand All @@ -394,15 +394,15 @@ public function initVars($shopID)
}

// loading theme config options
$this->_loadVarsFromDb($shopID, null, Config::OXMODULE_THEME_PREFIX . $this->getConfigParam('sTheme'));
$this->_loadVarsFromDb($shopId, null, Config::OXMODULE_THEME_PREFIX . $this->getConfigParam('sTheme'));

// checking if custom theme (which has defined parent theme) config options should be loaded over parent theme (#3362)
if ($this->getConfigParam('sCustomTheme')) {
$this->_loadVarsFromDb($shopID, null, Config::OXMODULE_THEME_PREFIX . $this->getConfigParam('sCustomTheme'));
$this->_loadVarsFromDb($shopId, null, Config::OXMODULE_THEME_PREFIX . $this->getConfigParam('sCustomTheme'));
}

// loading modules config
$this->_loadVarsFromDb($shopID, null, Config::OXMODULE_MODULE_PREFIX);
$this->_loadVarsFromDb($shopId, null, Config::OXMODULE_MODULE_PREFIX);

$this->loadAdditionalConfiguration();

Expand Down Expand Up @@ -546,18 +546,18 @@ protected function _loadCustomConfig()
/**
* Load config values from DB
*
* @param string $shopID shop ID to load parameters
* @param int $shopId shop ID to load parameters
* @param array $onlyVars array of params to load (optional)
* @param string $module module vars to load, empty for base options
*
* @return bool
*/
protected function _loadVarsFromDb($shopID, $onlyVars = null, $module = '')
protected function _loadVarsFromDb($shopId, $onlyVars = null, $module = '')
{
$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb();

$params = [
':oxshopid' => $shopID
':oxshopid' => $shopId
];
$select = "select
oxvarname, oxvartype, oxvarvalue
Expand Down Expand Up @@ -787,7 +787,7 @@ public function checkParamSpecialChars(&$value, $raw = null)
/**
* Active Shop id setter
*
* @param string $shopId shop id
* @param int $shopId shop id
*/
public function setShopId($shopId)
{
Expand Down Expand Up @@ -1812,7 +1812,7 @@ public function detectVersion()
* @param string $varType Variable Type
* @param string $varName Variable name
* @param mixed $varVal Variable value (can be string, integer or array)
* @param string $shopId Shop ID, default is current shop
* @param int $shopId Shop ID, default is current shop
* @param string $module Module name (empty for base options)
*/
public function saveShopConfVar($varType, $varName, $varVal, $shopId = null, $module = '')
Expand Down Expand Up @@ -1875,7 +1875,7 @@ public function saveShopConfVar($varType, $varName, $varVal, $shopId = null, $mo
* Retrieves shop configuration parameters from DB.
*
* @param string $varName Variable name
* @param string $shopId Shop ID
* @param int $shopId Shop ID
* @param string $module module identifier
*
* @return object - raw configuration value in DB
Expand Down Expand Up @@ -2269,7 +2269,7 @@ public function getSystemConfigParameter($parameterName)
/**
* Returns whether given shop id is valid.
*
* @param string $shopId
* @param int $shopId
*
* @return bool
*/
Expand Down
10 changes: 5 additions & 5 deletions source/Core/Model/BaseModel.php
Expand Up @@ -529,8 +529,8 @@ public function setId($oxid = null)
if ($this->getCoreTableName() == 'oxobject2category') {
$objectId = $this->oxobject2category__oxobjectid;
$categoryId = $this->oxobject2category__oxcatnid;
$shopID = $this->oxobject2category__oxshopid;
$this->_sOXID = md5($objectId . $categoryId . $shopID);
$shopId = $this->oxobject2category__oxshopid;
$this->_sOXID = md5($objectId . $categoryId . $shopId);
} else {
$this->_sOXID = \OxidEsales\Eshop\Core\Registry::getUtilsObject()->generateUID();
}
Expand Down Expand Up @@ -996,13 +996,13 @@ protected function _isInList()
* Returns actual object view or table name
*
* @param string $table Original table name
* @param int $shopID Shop ID
* @param int $shopId Shop ID
*
* @return string
*/
protected function _getObjectViewName($table, $shopID = null)
protected function _getObjectViewName($table, $shopId = null)
{
return getViewName($table, -1, $shopID);
return getViewName($table, -1, $shopId);
}

/**
Expand Down
8 changes: 4 additions & 4 deletions source/Core/Model/MultiLanguageModel.php
Expand Up @@ -509,17 +509,17 @@ protected function _insert()
* Returns actual object view or table name
*
* @param string $table Original table name
* @param int $shopID Shop ID
* @param int $shopId Shop ID
*
* @return string
*/
protected function _getObjectViewName($table, $shopID = null)
protected function _getObjectViewName($table, $shopId = null)
{
if (!$this->_blEmployMultilanguage) {
return parent::_getObjectViewName($table, $shopID);
return parent::_getObjectViewName($table, $shopId);
}

return getViewName($table, $this->getLanguage(), $shopID);
return getViewName($table, $this->getLanguage(), $shopId);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions source/Core/Module/ModuleTemplateBlockRepository.php
Expand Up @@ -19,7 +19,7 @@ class ModuleTemplateBlockRepository
* Return how many blocks of provided module overrides any template for active shop.
*
* @param array $modulesId list of modules to check if their template blocks overrides some shop block.
* @param string $shopId shop id to check if some module block overrides some template blocks in this Shop.
* @param int $shopId shop id to check if some module block overrides some template blocks in this Shop.
*
* @return string count of blocks for Shop=$shopId from modules=$modulesId.
*/
Expand All @@ -44,7 +44,7 @@ public function getBlocksCount($modulesId, $shopId)
*
* @param string $shopTemplateName shop template file name.
* @param array $activeModulesId list of modules to get information about.
* @param string $shopId in which Shop modules must be active.
* @param int $shopId in which Shop modules must be active.
* @param array $themesId list of themes to get information about.
*
* @return array
Expand Down
2 changes: 1 addition & 1 deletion source/Core/TableViewNameGenerator.php
Expand Up @@ -42,7 +42,7 @@ public function __construct($config = null, $language = null)
*
* @param string $table Table name
* @param int $languageId Language id [optional]
* @param string $shopId Shop id, otherwise config->getShopId() is used [optional]
* @param int $shopId Shop id, otherwise config->getShopId() is used [optional]
*
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion source/overridablefunctions.php
Expand Up @@ -165,7 +165,7 @@ function getLangTableName($sTable, $iLangId)
*
* @param string $table table name
* @param int $languageId language id [optional]
* @param string $shopId shop id, otherwise config->myshopid is used [optional]
* @param int $shopId shop id, otherwise config->myshopid is used [optional]
*
* @deprecated since v6.0.0 (2016-05-16); Use oxTableViewNameGenerator::getViewName().
*
Expand Down

0 comments on commit b572c21

Please sign in to comment.