| 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/Adminhtml/Model/System/ |
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_Adminhtml
* @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)
*/
/**
* Adminhtml System Store Model
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Model_System_Store extends Varien_Object
{
/**
* Website collection
* websiteId => Mage_Core_Model_Website
*
* @var array
*/
protected $_websiteCollection = array();
/**
* Group collection
* groupId => Mage_Core_Model_Store_Group
*
* @var array
*/
protected $_groupCollection = array();
/**
* Store collection
* storeId => Mage_Core_Model_Store
*
* @var array
*/
protected $_storeCollection;
/**
* @var bool
*/
private $_isAdminScopeAllowed = true;
/**
* Init model
* Load Website, Group and Store collections
*
* @return Mage_Adminhtml_Model_System_Store
*/
public function __construct()
{
return $this->reload();
}
/**
* Load/Reload Website collection
*
* @return array
*/
protected function _loadWebsiteCollection()
{
$this->_websiteCollection = Mage::app()->getWebsites();
return $this;
}
/**
* Load/Reload Group collection
*
* @return array
*/
protected function _loadGroupCollection()
{
$this->_groupCollection = array();
foreach (Mage::app()->getWebsites() as $website) {
foreach ($website->getGroups() as $group) {
$this->_groupCollection[$group->getId()] = $group;
}
}
return $this;
}
/**
* Load/Reload Store collection
*
* @return array
*/
protected function _loadStoreCollection()
{
$this->_storeCollection = Mage::app()->getStores();
return $this;
}
/**
* Retrieve store values for form
*
* @param bool $empty
* @param bool $all
* @return array
*/
public function getStoreValuesForForm($empty = false, $all = false)
{
$options = array();
if ($empty) {
$options[] = array(
'label' => '',
'value' => ''
);
}
if ($all && $this->_isAdminScopeAllowed) {
$options[] = array(
'label' => Mage::helper('adminhtml')->__('All Store Views'),
'value' => 0
);
}
$nonEscapableNbspChar = html_entity_decode(' ', ENT_NOQUOTES, 'UTF-8');
foreach ($this->_websiteCollection as $website) {
$websiteShow = false;
foreach ($this->_groupCollection as $group) {
if ($website->getId() != $group->getWebsiteId()) {
continue;
}
$groupShow = false;
foreach ($this->_storeCollection as $store) {
if ($group->getId() != $store->getGroupId()) {
continue;
}
if (!$websiteShow) {
$options[] = array(
'label' => $website->getName(),
'value' => array()
);
$websiteShow = true;
}
if (!$groupShow) {
$groupShow = true;
$values = array();
}
$values[] = array(
'label' => str_repeat($nonEscapableNbspChar, 4) . $store->getName(),
'value' => $store->getId()
);
}
if ($groupShow) {
$options[] = array(
'label' => str_repeat($nonEscapableNbspChar, 4) . $group->getName(),
'value' => $values
);
}
}
}
return $options;
}
/**
* Retrieve stores structure
*
* @param bool $isAll
* @param array $storeIds
* @param array $groupIds
* @param array $websiteIds
* @return array
*/
public function getStoresStructure($isAll = false, $storeIds = array(), $groupIds = array(), $websiteIds = array())
{
$out = array();
$websites = $this->getWebsiteCollection();
if ($isAll) {
$out[] = array(
'value' => 0,
'label' => Mage::helper('adminhtml')->__('All Store Views')
);
}
foreach ($websites as $website) {
$websiteId = $website->getId();
if ($websiteIds && !in_array($websiteId, $websiteIds)) {
continue;
}
$out[$websiteId] = array(
'value' => $websiteId,
'label' => $website->getName()
);
foreach ($website->getGroups() as $group) {
$groupId = $group->getId();
if ($groupIds && !in_array($groupId, $groupIds)) {
continue;
}
$out[$websiteId]['children'][$groupId] = array(
'value' => $groupId,
'label' => $group->getName()
);
foreach ($group->getStores() as $store) {
$storeId = $store->getId();
if ($storeIds && !in_array($storeId, $storeIds)) {
continue;
}
$out[$websiteId]['children'][$groupId]['children'][$storeId] = array(
'value' => $storeId,
'label' => $store->getName()
);
}
if (empty($out[$websiteId]['children'][$groupId]['children'])) {
unset($out[$websiteId]['children'][$groupId]);
}
}
if (empty($out[$websiteId]['children'])) {
unset($out[$websiteId]);
}
}
return $out;
}
/**
* Website label/value array getter, compatible with form dropdown options
*
* @param bool $empty
* @param bool $all
* @return array
*/
public function getWebsiteValuesForForm($empty = false, $all = false)
{
$options = array();
if ($empty) {
$options[] = array(
'label' => Mage::helper('adminhtml')->__('-- Please Select --'),
'value' => ''
);
}
if ($all && $this->_isAdminScopeAllowed) {
$options[] = array(
'label' => Mage::helper('adminhtml')->__('Admin'),
'value' => 0
);
}
foreach ($this->_websiteCollection as $website) {
$options[] = array(
'label' => $website->getName(),
'value' => $website->getId(),
);
}
return $options;
}
/**
* Get websites as id => name associative array
*
* @param bool $withDefault
* @param string $attribute
* @return array
*/
public function getWebsiteOptionHash($withDefault = false, $attribute = 'name')
{
$options = array();
foreach (Mage::app()->getWebsites((bool)$withDefault && $this->_isAdminScopeAllowed) as $website) {
$options[$website->getId()] = $website->getDataUsingMethod($attribute);
}
return $options;
}
/**
* Get store views as id => name associative array
*
* @param bool $withDefault
* @param string $attribute
* @return array
*/
public function getStoreOptionHash($withDefault = false, $attribute = 'name')
{
$options = array();
foreach (Mage::app()->getStores((bool)$withDefault && $this->_isAdminScopeAllowed) as $store) {
$options[$store->getId()] = $store->getDataUsingMethod($attribute);
}
return $options;
}
/**
* Get store groups as id => name associative array
*
* @param string $attribute
* @return array
*/
public function getStoreGroupOptionHash($attribute = 'name')
{
foreach ($this->_groupCollection as $group) {
$options[$group->getId()] = $group->getDataUsingMethod($attribute);
}
return $options;
}
/**
* Retrieve Website name by Id
*
* @param int websiteId
* @return string
*/
public function getWebsiteName($websiteId)
{
foreach ($this->_websiteCollection as $website) {
if ($website->getId() == $websiteId) {
return $website->getName();
}
}
return null;
}
/**
* Retrieve Group name by Id
*
* @param int groupId
* @return string
*/
public function getGroupName($groupId)
{
foreach ($this->_groupCollection as $group) {
if ($group->getId() == $groupId) {
return $group->getName();
}
}
return null;
}
/**
* Retrieve Store name by Id
*
* @param int $storeId
* @return string
*/
public function getStoreName($storeId)
{
if (isset($this->_storeCollection[$storeId])) {
return $this->_storeCollection[$storeId]->getName();
}
return null;
}
/**
* Retrieve store name with website and website store
*
* @param int $storeId
* @return Mage_Core_Model_Store
**/
public function getStoreData($storeId)
{
if (isset($this->_storeCollection[$storeId])) {
return $this->_storeCollection[$storeId];
}
return null;
}
/**
* Retrieve store name with website and website store
*
* @param int $storeId
* @return string
**/
public function getStoreNameWithWebsite($storeId)
{
$name = '';
if (is_array($storeId)) {
$names = array();
foreach ($storeId as $id) {
$names[]= $this->getStoreNameWithWebsite($id);
}
$name = implode(', ', $names);
}
else {
if (isset($this->_storeCollection[$storeId])) {
$data = $this->_storeCollection[$storeId];
$name .= $this->getWebsiteName($data->getWebsiteId());
$name .= ($name ? '/' : '').$this->getGroupName($data->getGroupId());
$name .= ($name ? '/' : '').$data->getName();
}
}
return $name;
}
/**
* Retrieve Website collection as array
*
* @return array
*/
public function getWebsiteCollection()
{
return $this->_websiteCollection;
}
/**
* Retrieve Group collection as array
*
* @return array
*/
public function getGroupCollection()
{
return $this->_groupCollection;
}
/**
* Retrieve Store collection as array
*
* @return array
*/
public function getStoreCollection()
{
return $this->_storeCollection;
}
/**
* Load/Reload collection(s) by type
* Allowed types: website, group, store or null for all
*
* @param string $type
* @return Mage_Adminhtml_Model_System_Store
*/
public function reload($type = null)
{
if (is_null($type)) {
$this->_loadWebsiteCollection();
$this->_loadGroupCollection();
$this->_loadStoreCollection();
}
else {
switch ($type) {
case 'website':
$this->_loadWebsiteCollection();
break;
case 'group':
$this->_loadGroupCollection();
break;
case 'store':
$this->_loadStoreCollection();
break;
default:
break;
}
}
return $this;
}
/**
* Retrieve store path with website and website store
*
* @param int $storeId
* @return string
**/
public function getStoreNamePath($storeId)
{
$name = '';
if (is_array($storeId)) {
$names = array();
foreach ($storeId as $id) {
$names[]= $this->getStoreNamePath($id);
}
$name = implode(', ', $names);
}
else {
if (isset($this->_storeCollection[$storeId])) {
$data = $this->_storeCollection[$storeId];
$name .= $this->getWebsiteName($data->getWebsiteId());
$name .= ($name ? '/' : '').$this->getGroupName($data->getGroupId());
}
}
return $name;
}
/**
* Specify whether to show admin-scope options
*
* @param bool $value
* @return Mage_Adminhtml_Model_System_Store
*/
public function setIsAdminScopeAllowed($value)
{
$this->_isAdminScopeAllowed = (bool)$value;
return $this;
}
}