0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.9.2.1-35
/
standard
/
htdocs
/
app
/
code
/
core
/
Mage
/
Log
/
Helper
/
[
Home
]
File: Data.php
<?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@magento.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.magento.com for more information. * * @category Mage * @package Mage_Log * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Log data helper */ class Mage_Log_Helper_Data extends Mage_Core_Helper_Abstract { const XML_PATH_LOG_ENABLED = 'system/log/enable_log'; /** * @var Mage_Log_Helper_Data */ protected $_logLevel; public function __construct(array $data = array()) { $this->_logLevel = isset($data['log_level']) ? $data['log_level'] : intval(Mage::getStoreConfig(self::XML_PATH_LOG_ENABLED)); } /** * Are visitor should be logged * * @return bool */ public function isVisitorLogEnabled() { return $this->_logLevel == Mage_Log_Model_Adminhtml_System_Config_Source_Loglevel::LOG_LEVEL_VISITORS || $this->isLogEnabled(); } /** * Are all events should be logged * * @return bool */ public function isLogEnabled() { return $this->_logLevel == Mage_Log_Model_Adminhtml_System_Config_Source_Loglevel::LOG_LEVEL_ALL; } /** * Are all events should be disabled * * @return bool */ public function isLogDisabled() { return $this->_logLevel == Mage_Log_Model_Adminhtml_System_Config_Source_Loglevel::LOG_LEVEL_NONE; } }