| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Core/Model/Mysql4/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Core
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class Mage_Core_Model_Mysql4_Config extends Mage_Core_Model_Mysql4_Abstract
{
protected function _construct()
{
$this->_init('core/config_data', 'config_id');
}
/**
* Get checksum for one or more tables
*
* @param string|array $tables string is separated by comma
* @return integer|boolean
*/
public function getChecksum($tables)
{
if (is_string($tables)) {
$tablesArr = explode(',', $tables);
$tables = array();
foreach ($tablesArr as $table) {
$table = $this->getTable(trim($table));
if (!empty($table)) {
$tables[] = $table;
}
}
}
if (empty($tables) || !$this->_getReadAdapter()) {
return false;
}
$checksumArr = $this->_getReadAdapter()->fetchAll('checksum table '.join(',', $tables));
$checksum = 0;
foreach ($checksumArr as $r) {
$checksum += $r['Checksum'];
}
return $checksum;
}
/**
* Load configuration values into xml config object
*
* @param Mage_Core_Model_Config $xmlConfig
* @param string $cond
* @return Mage_Core_Model_Mysql4_Config_Collection
*/
public function loadToXml(Mage_Core_Model_Config $xmlConfig, $cond=null)
{
$read = $this->_getReadAdapter();
if (!$read) {
return $this;
}
$websites = array();
$rows = $read->fetchAssoc("select website_id, code, name from ".$this->getTable('website'));
foreach ($rows as $w) {
$xmlConfig->setNode('websites/'.$w['code'].'/system/website/id', $w['website_id']);
$xmlConfig->setNode('websites/'.$w['code'].'/system/website/name', $w['name']);
$websites[$w['website_id']] = array('code'=>$w['code']);
}
$stores = array();
$rows = $read->fetchAssoc("select store_id, code, name, website_id from ".$this->getTable('store')." order by sort_order asc");
foreach ($rows as $s) {
$xmlConfig->setNode('stores/'.$s['code'].'/system/store/id', $s['store_id']);
$xmlConfig->setNode('stores/'.$s['code'].'/system/store/name', $s['name']);
$xmlConfig->setNode('stores/'.$s['code'].'/system/website/id', $s['website_id']);
$xmlConfig->setNode('websites/'.$websites[$s['website_id']]['code'].'/system/stores/'.$s['code'], $s['store_id']);
$stores[$s['store_id']] = array('code'=>$s['code']);
$websites[$s['website_id']]['stores'][$s['store_id']] = $s['code'];
}
$subst_from = array();
$subst_to = array();
// load all configuration records from database, which are not inherited
$rows = $read->fetchAll("select scope, scope_id, path, value from ".$this->getMainTable().($cond ? ' where '.$cond : ''));
// set default config values from database
foreach ($rows as $r) {
if ($r['scope']!=='default') {
continue;
}
$value = str_replace($subst_from, $subst_to, $r['value']);
$xmlConfig->setNode('default/'.$r['path'], $value);
}
// inherit default config values to all websites
$extendSource = $xmlConfig->getNode('default');
foreach ($websites as $id=>$w) {
$websiteNode = $xmlConfig->getNode('websites/'.$w['code']);
$websiteNode->extend($extendSource);
}
$deleteWebsites = array();
// set websites config values from database
foreach ($rows as $r) {
if ($r['scope']!=='websites') {
continue;
}
$value = str_replace($subst_from, $subst_to, $r['value']);
if (isset($websites[$r['scope_id']])) {
$xmlConfig->setNode('websites/'.$websites[$r['scope_id']]['code'].'/'.$r['path'], $value);
}
else {
$deleteWebsites[$r['scope_id']] = $r['scope_id'];
}
}
// extend website config values to all associated stores
foreach ($websites as $website) {
$extendSource = $xmlConfig->getNode('websites/'.$website['code']);
if (isset($website['stores'])) {
foreach ($website['stores'] as $sCode) {
$storeNode = $xmlConfig->getNode('stores/'.$sCode);
/**
* $extendSource DO NOT need overwrite source
*/
$storeNode->extend($extendSource, false);
}
}
}
$deleteStores = array();
// set stores config values from database
foreach ($rows as $r) {
if ($r['scope']!=='stores') {
continue;
}
$value = str_replace($subst_from, $subst_to, $r['value']);
if (isset($stores[$r['scope_id']])) {
$xmlConfig->setNode('stores/'.$stores[$r['scope_id']]['code'].'/'.$r['path'], $value);
}
else {
$deleteStores[$r['scope_id']] = $r['scope_id'];
}
}
if ($deleteWebsites) {
$this->_getWriteAdapter()->delete($this->getMainTable(), array(
$this->_getWriteAdapter()->quoteInto('scope=?', 'websites'),
$this->_getWriteAdapter()->quoteInto('scope_id IN(?)', $deleteWebsites),
));
}
if ($deleteStores) {
$this->_getWriteAdapter()->delete($this->getMainTable(), array(
$this->_getWriteAdapter()->quoteInto('scope=?', 'stores'),
$this->_getWriteAdapter()->quoteInto('scope_id IN(?)', $deleteStores),
));
}
return $this;
}
/**
* Save config value
*
* @param string $path
* @param string $value
* @param string $scope
* @param int $scopeId
* @return Mage_Core_Store_Mysql4_Config
*/
public function saveConfig($path, $value, $scope, $scopeId)
{
$writeAdapter = $this->_getWriteAdapter();
$select = $writeAdapter->select()
->from($this->getMainTable())
->where('path=?', $path)
->where('scope=?', $scope)
->where('scope_id=?', $scopeId);
$row = $writeAdapter->fetchRow($select);
$newData = array(
'scope' => $scope,
'scope_id' => $scopeId,
'path' => $path,
'value' => $value
);
if ($row) {
$whereCondition = $writeAdapter->quoteInto($this->getIdFieldName() . '=?', $row[$this->getIdFieldName()]);
$writeAdapter->update($this->getMainTable(), $newData, $whereCondition);
}
else {
$writeAdapter->insert($this->getMainTable(), $newData);
}
return $this;
}
/**
* Delete config value
*
* @param string $path
* @param string $scope
* @param int $scopeId
* @return Mage_Core_Store_Mysql4_Config
*/
public function deleteConfig($path, $scope, $scopeId)
{
$writeAdapter = $this->_getWriteAdapter();
$writeAdapter->delete($this->getMainTable(), array(
$writeAdapter->quoteInto('path=?', $path),
$writeAdapter->quoteInto('scope=?', $scope),
$writeAdapter->quoteInto('scope_id=?', $scopeId)
));
return $this;
}
}