| 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/Weee/Block/Renderer/Weee/ |
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_Weee
* @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 weee tax item renderer
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Weee_Block_Renderer_Weee_Tax extends Mage_Adminhtml_Block_Widget implements Varien_Data_Form_Element_Renderer_Interface
{
protected $_element = null;
protected $_countries = null;
protected $_websites = null;
public function __construct()
{
$this->setTemplate('weee/renderer/tax.phtml');
}
public function getProduct()
{
return Mage::registry('product');
}
public function render(Varien_Data_Form_Element_Abstract $element)
{
$this->setElement($element);
$this->_setAddButton();
return $this->toHtml();
}
public function setElement(Varien_Data_Form_Element_Abstract $element)
{
$this->_element = $element;
return $this;
}
public function getElement()
{
return $this->_element;
}
public function getValues()
{
$values =array();
$data = $this->getElement()->getValue();
if (is_array($data) && count($data)) {
usort($data, array($this, '_sortWeeeTaxes'));
$values = $data;
}
return $values;
}
protected function _sortWeeeTaxes($a, $b)
{
if ($a['website_id']!=$b['website_id']) {
return $a['website_id']<$b['website_id'] ? -1 : 1;
}
if ($a['country']!=$b['country']) {
return $a['country']<$b['country'] ? -1 : 1;
}
return 0;
}
public function getWebsiteCount()
{
return count($this->getWebsites());
}
public function isMultiWebsites()
{
return !Mage::app()->isSingleStoreMode();
}
public function getCountries()
{
if (is_null($this->_countries)) {
$this->_countries = Mage::getModel('adminhtml/system_config_source_country')
->toOptionArray();
}
return $this->_countries;
}
public function getWebsites()
{
if (!is_null($this->_websites)) {
return $this->_websites;
}
$websites = array();
$websites[0] = array(
'name' => $this->__('All Websites'),
'currency' => Mage::app()->getBaseCurrencyCode()
);
if (!Mage::app()->isSingleStoreMode() && !$this->getElement()->getEntityAttribute()->isScopeGlobal()) {
if ($storeId = $this->getProduct()->getStoreId()) {
$website = Mage::app()->getStore($storeId)->getWebsite();
$websites[$website->getId()] = array(
'name' => $website->getName(),
'currency' => $website->getConfig(Mage_Directory_Model_Currency::XML_PATH_CURRENCY_BASE),
);
} else {
foreach (Mage::app()->getWebsites() as $website) {
if (!in_array($website->getId(), $this->getProduct()->getWebsiteIds())) {
continue;
}
$websites[$website->getId()] = array(
'name' => $website->getName(),
'currency' => $website->getConfig(Mage_Directory_Model_Currency::XML_PATH_CURRENCY_BASE),
);
}
}
}
$this->_websites = $websites;
return $this->_websites;
}
protected function _setAddButton()
{
$this->setChild('add_button',
$this->getLayout()->createBlock('adminhtml/widget_button')
->setData(array(
'label' => Mage::helper('catalog')->__('Add Tax'),
'onclick' => "weeeTaxControl.addItem('".$this->getElement()->getHtmlId()."')",
'class' => 'add'
)));
}
public function getAddButtonHtml()
{
return $this->getChildHtml('add_button');
}
}