| 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/a/w/e/awebpaca/boutiques/app/code/core/Mage/Log/Model/Mysql4/Visitor/Online/ |
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_Log
* @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)
*/
/**
* Log Online visitors collection
*
* @category Mage
* @package Mage_Log
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Log_Model_Mysql4_Visitor_Online_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
{
/**
* joined fields array
*
* @var array
*/
protected $_fields = array();
/**
* Initialize collection model
*
*/
protected function _construct()
{
$this->_init('log/visitor_online');
}
/**
* Add Customer data to collection
*
* @return Mage_Log_Model_Mysql4_Visitor_Online_Collection
*/
public function addCustomerData()
{
$customer = Mage::getModel('customer/customer');
// alias => attribute_code
$attributes = array(
'customer_lastname' => 'lastname',
'customer_firstname' => 'firstname',
'customer_email' => 'email'
);
foreach ($attributes as $alias => $attributeCode) {
$attribute = $customer->getAttribute($attributeCode);
/* @var $attribute Mage_Eav_Model_Entity_Attribute_Abstract */
if ($attribute->getBackendType() == 'static') {
$tableAlias = 'customer_' . $attribute->getAttributeCode();
$this->getSelect()->joinLeft(
array($tableAlias => $attribute->getBackend()->getTable()),
sprintf('%s.entity_id=main_table.customer_id', $tableAlias),
array($alias => $attribute->getAttributeCode())
);
$this->_fields[$alias] = sprintf('%s.%s', $tableAlias, $attribute->getAttributeCode());
}
else {
$tableAlias = 'customer_' . $attribute->getAttributeCode();
$joinConds = array(
sprintf('%s.entity_id=main_table.customer_id', $tableAlias),
$this->getConnection()->quoteInto($tableAlias . '.attribute_id=?', $attribute->getAttributeId())
);
$this->getSelect()->joinLeft(
array($tableAlias => $attribute->getBackend()->getTable()),
join(' AND ', $joinConds),
array($alias => 'value')
);
$this->_fields[$alias] = sprintf('%s.value', $tableAlias);
}
}
$this->setFlag('has_customer_data', true);
return $this;
}
/**
* Filter collection by specified website(s)
*
* @param int|array $websiteIds
* @return Mage_Log_Model_Mysql4_Visitor_Online_Collection
*/
public function addWebsiteFilter($websiteIds)
{
if ($this->getFlag('has_customer_data')) {
$this->getSelect()
->where('customer_email.website_id IN (?)', $websiteIds);
}
return $this;
}
/**
* Add field filter to collection
*
* If $attribute is an array will add OR condition with following format:
* array(
* array('attribute'=>'firstname', 'like'=>'test%'),
* array('attribute'=>'lastname', 'like'=>'test%'),
* )
*
* @see self::_getConditionSql for $condition
* @param string|array $attribute
* @param null|string|array $condition
* @return Mage_Eav_Model_Entity_Collection_Abstract
*/
public function addFieldToFilter($field, $condition=null)
{
if (isset($this->_fields[$field])) {
$field = $this->_fields[$field];
}
return parent::addFieldToFilter($field, $condition);
}
}