*/ class Mage_Tax_Block_Adminhtml_Notifications extends Mage_Adminhtml_Block_Template { /** * Factory instance * * @var Mage_Core_Model_Factory */ protected $_factory; /** * Application instance * * @var Mage_Core_Model_App */ protected $_app; /** * Initialize block instance * * @param array $args */ public function __construct(array $args = array()) { $this->_factory = !empty($args['factory']) ? $args['factory'] : Mage::getSingleton('core/factory'); $this->_app = !empty($args['app']) ? $args['app'] : Mage::app(); unset($args['factory'], $args['app']); parent::__construct($args); } /** * Return list of store names which have not compatible tax calculation type and price display settings. * Return true if settings are wrong for default store. * * @return bool|array */ public function getStoresWithWrongDisplaySettings() { $defaultStoreId = Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID; //check default store first if (!$this->_factory->getSingleton('tax/config')->checkDisplaySettings($defaultStoreId)) { return true; } $storeNames = array(); $stores = $this->_app->getStores(); foreach ($stores as $store) { if (!$this->checkDisplaySettings($store)) { $website = $store->getWebsite(); $storeNames[] = $website->getName() . '(' . $store->getName() . ')'; } } return $storeNames; } /** * Check if tax calculation type and price display settings are compatible * * @param mixed $store * @return bool */ public function checkDisplaySettings($store = null) { return $this->_factory->getSingleton('tax/config')->checkDisplaySettings($store); } /** * Return list of store names where tax discount settings are compatible. * Return true if settings are wrong for default store. * * @return bool|array */ public function getWebsitesWithWrongDiscountSettings() { $defaultStoreId = Mage_Catalog_Model_Abstract::DEFAULT_STORE_ID; //check default store first if (!$this->_factory->getSingleton('tax/config')->checkDiscountSettings($defaultStoreId)) { return true; } $storeNames = array(); $stores = $this->_app->getStores(); foreach ($stores as $store) { if (!$this->_factory->getSingleton('tax/config')->checkDiscountSettings($store)) { $website = $store->getWebsite(); $storeNames[] = $website->getName() . '(' . $store->getName() . ')'; } } return $storeNames; } /** * Get URL to ignore tax notifications * * @param string $section * @return string */ public function getIgnoreTaxNotificationUrl($section) { return $this->getUrl('adminhtml/tax/ignoreTaxNotification', array('section' => $section)); } /** * Get tax management url * * @return string */ public function getInfoUrl() { return $this->_app->getStore()->getConfig(Mage_Tax_Model_Config::XML_PATH_TAX_NOTIFICATION_URL); } /** * Get tax management url * * @return string */ public function getManageUrl() { return $this->getUrl('adminhtml/system_config/edit/section/tax'); } /** * ACL validation before html generation * * @return string */ protected function _toHtml() { if ($this->_factory->getSingleton('admin/session')->isAllowed('system/config/tax')) { return parent::_toHtml(); } return ''; } }