| 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)
*/
#require_once 'Mage/Core/Model/Mysql4.php';
/**
* Mysql Model for module
*/
class Mage_Core_Model_Mysql4_Resource
{
protected $_read = null;
protected $_write = null;
protected $_resTable = null;
protected static $_versions = null;
protected static $_dataVersions = null;
/**
* Class constructor
*/
public function __construct()
{
$this->_resTable = Mage::getSingleton('core/resource')->getTableName('core/resource');
$this->_read = Mage::getSingleton('core/resource')->getConnection('core_read');
$this->_write = Mage::getSingleton('core/resource')->getConnection('core_write');
}
/**
* Get Module version from DB
*
* @param string $moduleName
* @return string
*/
function getDbVersion($resName)
{
if (!$this->_read) {
return false;
}
if (is_null(self::$_versions)) {
// if Core module not instaled
try {
$select = $this->_read->select()->from($this->_resTable, array('code', 'version'));
self::$_versions = $this->_read->fetchPairs($select);
}
catch (Exception $e){
self::$_versions = array();
}
}
return isset(self::$_versions[$resName]) ? self::$_versions[$resName] : false;
}
/**
* Set module wersion into DB
*
* @param string $moduleName
* @param string $version
* @return int
*/
function setDbVersion($resName, $version)
{
$dbModuleInfo = array(
'code' => $resName,
'version' => $version,
);
if ($this->getDbVersion($resName)) {
self::$_versions[$resName] = $version;
$condition = $this->_write->quoteInto('code=?', $resName);
return $this->_write->update($this->_resTable, $dbModuleInfo, $condition);
}
else {
self::$_versions[$resName] = $version;
return $this->_write->insert($this->_resTable, $dbModuleInfo);
}
}
/**
* Get resource data version
*
* @param string $resName
* @return string | false
*/
public function getDataVersion($resName)
{
if (!$this->_read) {
return false;
}
if (is_null(self::$_dataVersions)) {
$select = $this->_read->select()->from($this->_resTable, array('code', 'data_version'));
self::$_dataVersions = $this->_read->fetchPairs($select);
}
return isset(self::$_dataVersions[$resName]) ? self::$_dataVersions[$resName] : false;
}
/**
* Specify resource data version
*
* @param string $resName
* @param string $version
* @return Mage_Core_Model_Mysql4_Resource
*/
public function setDataVersion($resName, $version)
{
$data = array('code' => $resName, 'data_version' => $version);
if ($this->getDbVersion($resName) || $this->getDataVersion($resName)) {
self::$_dataVersions[$resName] = $version;
$this->_write->update($this->_resTable, $data, array('code=?' => $resName));
}
else {
self::$_dataVersions[$resName] = $version;
$this->_write->insert($this->_resTable, $data);
}
return $this;
}
}