| 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/Sales/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_Sales
* @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)
*/
/**
* Flat sales abstract collection
*
*/
abstract class Mage_Sales_Model_Mysql4_Collection_Abstract extends Mage_Core_Model_Mysql4_Collection_Abstract
{
protected $_eventPrefix = '';
protected $_eventObject = '';
/**
* Check if $attribute is Mage_Eav_Model_Entity_Attribute and convert to string field name
*
* @param string|Mage_Eav_Model_Entity_Attribute $attribute
* @return string
*/
protected function _attributeToField($attribute)
{
$field = false;
if (is_string($attribute)) {
$field = $attribute;
} elseif ($attribute instanceof Mage_Eav_Model_Entity_Attribute) {
$field = $attribute->getAttributeCode();
}
if (!$field) {
Mage::throwException(Mage::helper('sales')->__('Cannot determine the field name.'));
}
return $field;
}
/**
* Add attribute to select result set.
* Backward compatibility with EAV collection
*
* @param string $attribute
* @return Mage_Sales_Model_Mysql4_Collection_Abstract
*/
public function addAttributeToSelect($attribute)
{
$this->addFieldToSelect($this->_attributeToField($attribute));
return $this;
}
/**
* Specify collection select filter by attribute value
* Backward compatibility with EAV collection
*
* @param string|Mage_Eav_Model_Entity_Attribute $attribute
* @param array|integer|string|null $condition
* @return Mage_Sales_Model_Mysql4_Collection_Abstract
*/
public function addAttributeToFilter($attribute, $condition = null)
{
$this->addFieldToFilter($this->_attributeToField($attribute), $condition);
return $this;
}
/**
* Specify collection select filter by attribute value
* Backward compatibility with EAV collection
*
* @param string $attribute
* @param string $dir
* @return Mage_Sales_Model_Mysql4_Collection_Abstract
*/
public function addAttributeToSort($attribute, $dir='asc')
{
$this->addOrder($this->_attributeToField($attribute), $dir);
return $this;
}
/**
* Set collection page start and records to show
* Backward compatibility with EAV collection
*
* @param integer $pageNum
* @param integer $pageSize
* @return Mage_Eav_Model_Entity_Collection_Abstract
*/
public function setPage($pageNum, $pageSize)
{
$this->setCurPage($pageNum)
->setPageSize($pageSize);
return $this;
}
/**
* Create all ids retrieving select with limitation
* Backward compatibility with EAV collection
*
* @return Mage_Eav_Model_Entity_Collection_Abstract
*/
protected function _getAllIdsSelect($limit=null, $offset=null)
{
$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($this->getResource()->getIdFieldName(), 'main_table');
$idsSelect->limit($limit, $offset);
return $idsSelect;
}
/**
* Retrive all ids for collection
* Backward compatibility with EAV collection
*
* @param int $limit
* @param int $offset
* @return array
*/
public function getAllIds($limit=null, $offset=null)
{
return $this->getConnection()->fetchCol(
$this->_getAllIdsSelect($limit, $offset),
$this->_bindParams
);
}
/**
* Backward compatibility with EAV collection
* @todo implement join functionality if necessary
*/
public function joinAttribute($alias, $attribute, $bind, $filter=null, $joinType='inner', $storeId=null)
{
return $this;
}
}