| 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/Resource/ |
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)
*/
/**
* Abstract resource model
*
* @category Mage
* @package Mage_Core
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class Mage_Core_Model_Resource_Abstract
{
public function __construct()
{
$this->_construct();
}
/**
* Array of callbacks subscribed to commit transaction commit
*
* @var array
*/
static protected $_commitCallbacks = array();
/**
* Resource initialization
*/
abstract protected function _construct();
/**
* Retrieve connection for read data
*/
abstract protected function _getReadAdapter();
/**
* Retrieve connection for write data
*/
abstract protected function _getWriteAdapter();
/**
* Start resource transaction
*
* @return Mage_Core_Model_Resource_Abstract
*/
public function beginTransaction()
{
$this->_getWriteAdapter()->beginTransaction();
return $this;
}
/**
* Subscribe some callback to transaction commit
*
* @param callback $callback
* @return Mage_Core_Model_Resource_Abstract
*/
public function addCommitCallback($callback)
{
$adapterKey = spl_object_hash($this->_getWriteAdapter());
self::$_commitCallbacks[$adapterKey][] = $callback;
return $this;
}
/**
* Commit resource transaction
*
* @return Mage_Core_Model_Resource_Abstract
*/
public function commit()
{
$this->_getWriteAdapter()->commit();
/**
* Process after commit callbacks
*/
if ($this->_getWriteAdapter()->getTransactionLevel() === 0) {
$adapterKey = spl_object_hash($this->_getWriteAdapter());
if (isset(self::$_commitCallbacks[$adapterKey])) {
$callbacks = self::$_commitCallbacks[$adapterKey];
self::$_commitCallbacks[$adapterKey] = array();
foreach ($callbacks as $index => $callback) {
call_user_func($callback);
}
}
}
return $this;
}
/**
* Roll back resource transaction
*
* @return Mage_Core_Model_Resource_Abstract
*/
public function rollBack()
{
$this->_getWriteAdapter()->rollBack();
return $this;
}
/**
* Format date to internal format
*
* @param string | Zend_Date $date
* @param bool $includeTime
* @return string
*/
public function formatDate($date, $includeTime=true)
{
if ($date instanceof Zend_Date) {
if ($includeTime) {
return $date->toString(Varien_Date::DATETIME_INTERNAL_FORMAT);
}
else {
return $date->toString(Varien_Date::DATE_INTERNAL_FORMAT);
}
}
if (empty($date)) {
return new Zend_Db_Expr('NULL');
}
if (!is_numeric($date)) {
$date = strtotime($date);
}
if ($includeTime) {
return date('Y-m-d H:i:s', $date);
}
else {
return date('Y-m-d', $date);
}
}
public function mktime($str)
{
return strtotime($str);
}
/**
* Serialize specified field in an object
*
* @param Varien_Object $object
* @param string $field
* @param mixed $defaultValue
* @param bool $unsetEmpty
*/
protected function _serializeField(Varien_Object $object, $field, $defaultValue = null, $unsetEmpty = false)
{
$value = $object->getData($field);
if (empty($value)) {
if ($unsetEmpty) {
$object->unsetData($field);
} else {
if (is_object($defaultValue) || is_array($defaultValue)) {
$defaultValue = serialize($defaultValue);
}
$object->setData($field, $defaultValue);
}
} elseif (is_array($value) || is_object($value)) {
$object->setData($field, serialize($value));
}
}
/**
* Unserialize Varien_Object field in an object
*
* @param Mage_Core_Model_Abstract $object
* @param string $field
* @param mixed $defaultValue
*/
protected function _unserializeField(Varien_Object $object, $field, $defaultValue = null)
{
$value = $object->getData($field);
if (empty($value)) {
$object->setData($field, $defaultValue);
} elseif (!is_array($value) && !is_object($value)) {
$object->setData($field, unserialize($value));
}
}
}