| 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/ |
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)
*/
/**
* Admin configuration model
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Model_Config extends Varien_Simplexml_Config
{
/**
* Enter description here...
*
* @var Varien_Simplexml_Element
*/
protected $_sections;
/**
* Tabs
*
* @var Varien_Simplexml_Element
*/
protected $_tabs;
/**
* Enter description here...
*
* @param string $sectionCode
* @param string $websiteCode
* @param string $storeCode
* @return Varien_Simplexml_Element
*/
public function getSections($sectionCode=null, $websiteCode=null, $storeCode=null)
{
if (empty($this->_sections)) {
$this->_initSectionsAndTabs();
}
return $this->_sections;
}
/**
* Retrive tabs
*
* @return Varien_Simplexml_Element
*/
public function getTabs()
{
if (empty($this->_tabs)) {
$this->_initSectionsAndTabs();
}
return $this->_tabs;
}
protected function _initSectionsAndTabs()
{
$mergeConfig = Mage::getModel('core/config_base');
$config = Mage::getConfig()->loadModulesConfiguration('system.xml');
$this->_sections = $config->getNode('sections');
$this->_tabs = $config->getNode('tabs');
}
/**
* Enter description here...
*
* @param string $sectionCode
* @param string $websiteCode
* @param string $storeCode
* @return Varien_Simplexml_Element
*/
public function getSection($sectionCode=null, $websiteCode=null, $storeCode=null)
{
if ($sectionCode){
return $this->getSections()->$sectionCode;
} elseif ($websiteCode) {
return $this->getSections()->$websiteCode;
} elseif ($storeCode) {
return $this->getSections()->$storeCode;
}
}
/**
* Enter description here...
*
* @param Varien_Simplexml_Element $node
* @param string $websiteCode
* @param string $storeCode
* @param boolean $isField
* @return boolean
*/
public function hasChildren ($node, $websiteCode=null, $storeCode=null, $isField=false)
{
$showTab = false;
if ($storeCode) {
if (isset($node->show_in_store)) {
if ((int)$node->show_in_store) {
$showTab=true;
}
}
}elseif ($websiteCode) {
if (isset($node->show_in_website)) {
if ((int)$node->show_in_website) {
$showTab=true;
}
}
} elseif (isset($node->show_in_default)) {
if ((int)$node->show_in_default) {
$showTab=true;
}
}
if ($showTab) {
if (isset($node->groups)) {
foreach ($node->groups->children() as $children){
if ($this->hasChildren ($children, $websiteCode, $storeCode)) {
return true;
}
}
}elseif (isset($node->fields)) {
foreach ($node->fields->children() as $children){
if ($this->hasChildren ($children, $websiteCode, $storeCode, true)) {
return true;
}
}
} else {
return true;
}
}
return false;
}
/**
* Get translate module name
*
* @param Varien_Simplexml_Element $sectionNode
* @param Varien_Simplexml_Element $groupNode
* @param Varien_Simplexml_Element $fieldNode
* @return string
*/
function getAttributeModule($sectionNode = null, $groupNode = null, $fieldNode = null)
{
$moduleName = 'adminhtml';
if (is_object($sectionNode) && method_exists($sectionNode, 'attributes')) {
$sectionAttributes = $sectionNode->attributes();
$moduleName = isset($sectionAttributes['module']) ? (string)$sectionAttributes['module'] : $moduleName;
}
if (is_object($groupNode) && method_exists($groupNode, 'attributes')) {
$groupAttributes = $groupNode->attributes();
$moduleName = isset($groupAttributes['module']) ? (string)$groupAttributes['module'] : $moduleName;
}
if (is_object($fieldNode) && method_exists($fieldNode, 'attributes')) {
$fieldAttributes = $fieldNode->attributes();
$moduleName = isset($fieldAttributes['module']) ? (string)$fieldAttributes['module'] : $moduleName;
}
return $moduleName;
}
/**
* System configuration section, fieldset or field label getter
*
* @param string $sectionName
* @param string $groupName
* @param string $fieldName
* @return string
*/
public function getSystemConfigNodeLabel($sectionName, $groupName = null, $fieldName = null)
{
$sectionName = trim($sectionName, '/');
$path = '//sections/' . $sectionName;
$groupNode = $fieldNode = null;
$sectionNode = $this->_sections->xpath($path);
if (!empty($groupName)) {
$path .= '/groups/' . trim($groupName, '/');
$groupNode = $this->_sections->xpath($path);
}
if (!empty($fieldName)) {
if (!empty($groupName)) {
$path .= '/fields/' . trim($fieldName, '/');
$fieldNode = $this->_sections->xpath($path);
}
else {
Mage::throwException(Mage::helper('adminhtml')->__('The group node name must be specified with field node name.'));
}
}
$moduleName = $this->getAttributeModule($sectionNode, $groupNode, $fieldNode);
$systemNode = $this->_sections->xpath($path);
foreach ($systemNode as $node) {
return Mage::helper($moduleName)->__((string)$node->label);
}
return '';
}
/**
* Look for encrypted node entries in all system.xml files and return them
*
* @return array $paths
*/
public function getEncryptedNodeEntriesPaths($explodePathToEntities = false)
{
$paths = array();
$configSections = $this->getSections();
if ($configSections) {
foreach ($configSections->xpath('//sections/*/groups/*/fields/*/backend_model') as $node) {
if ('adminhtml/system_config_backend_encrypted' === (string)$node) {
$section = $node->getParent()->getParent()->getParent()->getParent()->getParent()->getName();
$group = $node->getParent()->getParent()->getParent()->getName();
$field = $node->getParent()->getName();
if ($explodePathToEntities) {
$paths[] = array('section' => $section, 'group' => $group, 'field' => $field);
}
else {
$paths[] = $section . '/' . $group . '/' . $field;
}
}
}
}
return $paths;
}
}