| 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/Page/Block/ |
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_Page
* @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)
*/
/**
* Store and language switcher block
*
* @category Mage
* @package Mage_Core
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Page_Block_Switch extends Mage_Core_Block_Template
{
protected $_storeInUrl;
public function getCurrentWebsiteId()
{
return Mage::app()->getStore()->getWebsiteId();
}
public function getCurrentGroupId()
{
return Mage::app()->getStore()->getGroupId();
}
public function getCurrentStoreId()
{
return Mage::app()->getStore()->getId();
}
public function getRawGroups()
{
if (!$this->hasData('raw_groups')) {
$websiteGroups = Mage::app()->getWebsite()->getGroups();
$groups = array();
foreach ($websiteGroups as $group) {
$groups[$group->getId()] = $group;
}
$this->setData('raw_groups', $groups);
}
return $this->getData('raw_groups');
}
public function getRawStores()
{
if (!$this->hasData('raw_stores')) {
$websiteStores = Mage::app()->getWebsite()->getStores();
$stores = array();
foreach ($websiteStores as $store) {
/* @var $store Mage_Core_Model_Store */
if (!$store->getIsActive()) {
continue;
}
$store->setLocaleCode(Mage::getStoreConfig('general/locale/code', $store->getId()));
$params = array(
'_query' => array()
);
if (!$this->isStoreInUrl()) {
$params['_query']['___store'] = $store->getCode();
}
$baseUrl = $store->getUrl('', $params);
$store->setHomeUrl($baseUrl);
$stores[$store->getGroupId()][$store->getId()] = $store;
}
$this->setData('raw_stores', $stores);
}
return $this->getData('raw_stores');
}
public function getGroups()
{
if (!$this->hasData('groups')) {
$rawGroups = $this->getRawGroups();
$rawStores = $this->getRawStores();
$groups = array();
$localeCode = Mage::getStoreConfig('general/locale/code');
foreach ($rawGroups as $group) {
if (!isset($rawStores[$group->getId()])) {
continue;
}
if ($group->getId() == $this->getCurrentGroupId()) {
$groups[] = $group;
continue;
}
$store = false;
foreach ($rawStores[$group->getId()] as $s) {
if ($s->getLocaleCode() == $localeCode) {
$store = $s;
break;
}
}
if (!$store && isset($rawStores[$group->getId()][$group->getDefaultStoreId()])) {
$store = $rawStores[$group->getId()][$group->getDefaultStoreId()];
}
if ($store) {
$group->setHomeUrl($store->getHomeUrl());
$groups[] = $group;
}
}
$this->setData('groups', $groups);
}
return $this->getData('groups');
}
public function getStores()
{
if (!$this->getData('stores')) {
$rawStores = $this->getRawStores();
$groupId = $this->getCurrentGroupId();
if (!isset($rawStores[$groupId])) {
$stores = array();
} else {
$stores = $rawStores[$groupId];
}
$this->setData('stores', $stores);
}
return $this->getData('stores');
}
public function getCurrentStoreCode()
{
return Mage::app()->getStore()->getCode();
}
public function isStoreInUrl()
{
if (is_null($this->_storeInUrl)) {
$this->_storeInUrl = Mage::getStoreConfigFlag(Mage_Core_Model_Store::XML_PATH_STORE_IN_URL);
}
return $this->_storeInUrl;
}
}