| 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/Collection/ |
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 class Mage_Core_Model_Mysql4_Collection_Abstract extends Varien_Data_Collection_Db
{
const CACHE_TAG = 'COLLECTION_DATA';
/**
* Model name
*
* @var string
*/
protected $_model;
/**
* Resource model name
*
* @var string
*/
protected $_resourceModel;
/**
* Resource instance
*
* @var Mage_Core_Model_Mysql4_Abstract
*/
protected $_resource;
/**
* Fields to select in query
*
* @var array|null
*/
protected $_fieldsToSelect = null;
/**
* Fields initial fields to select like id_field
*
* @var array|null
*/
protected $_initialFieldsToSelect = null;
/**
* Fields to select changed flag
*
* @var booleam
*/
protected $_fieldsToSelectChanged = false;
/**
* Store joined tables here
*
* @var array
*/
protected $_joinedTables = array();
/**
* Collection main table
*
* @var string
*/
protected $_mainTable = null;
/**
* Collection constructor
*
* @param Mage_Core_Model_Mysql4_Abstract $resource
*/
public function __construct($resource=null)
{
parent::__construct();
$this->_construct();
$this->_resource = $resource;
$this->setConnection($this->getResource()->getReadConnection());
$this->_initSelect();
}
/**
* Initialization here
*
*/
protected function _construct()
{
}
/**
* Retrieve main table
*
* @return string
*/
public function getMainTable()
{
if ($this->_mainTable === null) {
$this->setMainTable($this->getResource()->getMainTable());
}
return $this->_mainTable;
}
/**
* Set main collection table
*
* @param string $table
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function setMainTable($table)
{
if (strpos($table, '/') !== false) {
$table = $this->getTable($table);
}
if ($this->_mainTable !== null && $table !== $this->_mainTable && $this->getSelect() !== null) {
$from = $this->getSelect()->getPart(Zend_Db_Select::FROM);
if (isset($from['main_table'])) {
$from['main_table']['tableName'] = $table;
}
$this->getSelect()->setPart(Zend_Db_Select::FROM, $from);
}
$this->_mainTable = $table;
return $this;
}
/**
* Init collection select
*
* @return unknown
*/
protected function _initSelect()
{
$this->getSelect()->from(array('main_table' => $this->getMainTable()));
return $this;
}
/**
* Get Zend_Db_Select instance and applies fields to select if needed
*
* @return Varien_Db_Select
*/
public function getSelect()
{
if ($this->_select && $this->_fieldsToSelectChanged) {
$this->_fieldsToSelectChanged = false;
$this->_initSelectFields();
}
return parent::getSelect();
}
/**
* Init fields for select
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
protected function _initSelectFields()
{
$columns = $this->_select->getPart(Zend_Db_Select::COLUMNS);
$columnsToSelect = array();
foreach ($columns as $columnEntry) {
list($correlationName, $column, $alias) = $columnEntry;
if ($correlationName !== 'main_table') { // Add joined fields to select
if ($column instanceof Zend_Db_Expr) {
$column = $column->__toString();
}
$key = ($alias !== null ? $alias : $column);
$columnsToSelect[$key] = $columnEntry;
}
}
$columns = $columnsToSelect;
$columnsToSelect = array_keys($columnsToSelect);
if ($this->_fieldsToSelect !== null) {
$insertIndex = 0;
foreach ($this->_fieldsToSelect as $alias => $field) {
if (!is_string($alias)) {
$alias = null;
}
if ($field instanceof Zend_Db_Expr) {
$column = $field->__toString();
} else {
$column = $field;
}
if (($alias !== null && in_array($alias, $columnsToSelect)) || // If field already joined fron another table
($alias === null && isset($alias, $columnsToSelect))) {
continue;
}
$columnEntry = array('main_table', $field, $alias);
array_splice($columns, $insertIndex, 0, array($columnEntry)); // Insert column
$insertIndex ++;
}
} else {
array_unshift($columns, array('main_table', '*', null));
}
$this->_select->setPart(Zend_Db_Select::COLUMNS, $columns);
return $this;
}
/**
* Retrieve initial fields to select like id field
*
* @return array
*/
protected function _getInitialFieldsToSelect()
{
if ($this->_initialFieldsToSelect === null) {
$this->_initialFieldsToSelect = array();
$this->_initInitialFieldsToSelect();
}
return $this->_initialFieldsToSelect;
}
/**
* Initialize initial fields to select like id field
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
protected function _initInitialFieldsToSelect()
{
$idFieldName = $this->getResource()->getIdFieldName();
if ($idFieldName) {
$this->_initialFieldsToSelect[] = $idFieldName;
}
return $this;
}
/**
* Add field to select
*
* @param string|array $field
* @param string|null $alias
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function addFieldToSelect($field, $alias = null)
{
if ($field === '*') { // If we will select all fields
$this->_fieldsToSelect = null;
$this->_fieldsToSelectChanged = true;
return $this;
}
if (is_array($field)) {
if ($this->_fieldsToSelect === null) {
$this->_fieldsToSelect = $this->_getInitialFieldsToSelect();
}
foreach ($field as $key => $value) {
$this->addFieldToSelect(
$value,
(is_string($key) ? $key : null),
false
);
}
$this->_fieldsToSelectChanged = true;
return $this;
}
if ($alias === null) {
$this->_fieldsToSelect[] = $field;
} else {
$this->_fieldsToSelect[$alias] = $field;
}
$this->_fieldsToSelectChanged = true;
return $this;
}
/**
* Removes field from select
*
* @param string|null $field
* @param boolean $isAlias Alias identifier
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function removeFieldFromSelect($field, $isAlias = false)
{
if ($isAlias) {
if (isset($this->_fieldsToSelect[$field])) {
unset($this->_fieldsToSelect[$field]);
}
} else {
foreach ($this->_fieldsToSelect as $key => $value) {
if ($value === $field) {
unset($this->_fieldsToSelect[$key]);
break;
}
}
}
$this->_fieldsToSelectChanged = true;
return $this;
}
/**
* Removes all fields from select
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function removeAllFieldsFromSelect()
{
$this->_fieldsToSelect = $this->_getInitialFieldsToSelect();
$this->_fieldsToSelectChanged = true;
return $this;
}
/**
* Standard resource collection initalization
*
* @param string $model
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
protected function _init($model, $resourceModel=null)
{
$this->setModel($model);
if (is_null($resourceModel)) {
$resourceModel = $model;
}
$this->setResourceModel($resourceModel);
return $this;
}
/**
* Set model name for collection items
*
* @param string $model
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function setModel($model)
{
if (is_string($model)) {
$this->_model = $model;
$this->setItemObjectClass(Mage::getConfig()->getModelClassName($model));
}
return $this;
}
/**
* Get model instance
*
* @param array $args
* @return Varien_Object
*/
public function getModelName($args=array())
{
return $this->_model;
}
public function setResourceModel($model)
{
$this->_resourceModel = $model;
}
public function getResourceModelName()
{
return $this->_resourceModel;
}
/**
* Get resource instance
*
* @return Mage_Core_Model_Mysql4_Abstract
*/
public function getResource()
{
if (empty($this->_resource)) {
$this->_resource = Mage::getResourceModel($this->getResourceModelName());
}
return $this->_resource;
}
public function getTable($table)
{
return $this->getResource()->getTable($table);
}
/**
* Retrive all ids for collection
*
* @return array
*/
public function getAllIds()
{
$idsSelect = clone $this->getSelect();
$idsSelect->reset(Zend_Db_Select::ORDER);
$idsSelect->reset(Zend_Db_Select::LIMIT_COUNT);
$idsSelect->reset(Zend_Db_Select::LIMIT_OFFSET);
$idsSelect->reset(Zend_Db_Select::COLUMNS);
$idsSelect->columns(
'main_table.' . $this->getResource()->getIdFieldName()
);
return $this->getConnection()->fetchCol($idsSelect);
}
public function join($table, $cond, $cols='*')
{
if (!isset($this->_joinedTables[$table])) {
$this->getSelect()->join(array($table=>$this->getTable($table)), $cond, $cols);
$this->_joinedTables[$table] = true;
}
return $this;
}
/**
* Redeclare before load method for adding event
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
protected function _beforeLoad()
{
parent::_beforeLoad();
Mage::dispatchEvent('core_collection_abstract_load_before', array('collection' => $this));
return $this;
}
/**
* Redeclare after load method for specifying collection items original data
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
protected function _afterLoad()
{
parent::_afterLoad();
foreach ($this->_items as $item) {
$item->setOrigData();
}
Mage::dispatchEvent('core_collection_abstract_load_after', array('collection' => $this));
return $this;
}
/**
* Save all the entities in the collection
*
* @return Mage_Core_Model_Mysql4_Collection_Abstract
*/
public function save()
{
foreach ($this->getItems() as $item) {
$item->save();
}
return $this;
}
/**
* Check if cache can be used for collection
*
* @return bool
*/
protected function _canUseCache()
{
return Mage::app()->useCache('collections') && !empty($this->_cacheConf);
}
/**
* Load cached data for select
*
* @param Zend_Db_Select $select
* @return string | false
*/
protected function _loadCache($select)
{
$data = Mage::app()->loadCache($this->_getSelectCacheId($select));
return $data;
}
/**
* Save collection data to cache
*
* @param array $data
* @param Zend_Db_Select $select
* @return unknown_type
*/
protected function _saveCache($data, $select)
{
Mage::app()->saveCache(serialize($data), $this->_getSelectCacheId($select), $this->_getCacheTags());
return $this;
}
/**
* Redeclared for processing cache tags throw application object
*
* @return array
*/
protected function _getCacheTags()
{
$tags = parent::_getCacheTags();
$tags[] = Mage_Core_Model_App::CACHE_TAG;
$tags[] = self::CACHE_TAG;
return $tags;
}
}