diff --git a/admin-dev/tabs/AdminCurrencies.php b/admin-dev/tabs/AdminCurrencies.php deleted file mode 100644 index 3ffec7c49..000000000 --- a/admin-dev/tabs/AdminCurrencies.php +++ /dev/null @@ -1,247 +0,0 @@ - -* @copyright 2007-2011 PrestaShop SA -* @version Release: $Revision: 7300 $ -* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) -* International Registered Trademark & Property of PrestaShop SA -*/ - -include_once(_PS_ADMIN_DIR_.'/../classes/AdminTab.php'); - -class AdminCurrencies extends AdminTab -{ - public function __construct() - { - $this->table = 'currency'; - $this->className = 'Currency'; - $this->lang = false; - $this->edit = true; - $this->delete = true; - - $this->fieldsDisplay = array( - 'id_currency' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25), - 'name' => array('title' => $this->l('Currency'), 'width' => 100), - 'iso_code' => array('title' => $this->l('ISO code'), 'align' => 'center', 'width' => 35), - 'iso_code_num' => array('title' => $this->l('ISO code num'), 'align' => 'center', 'width' => 35), - 'sign' => array('title' => $this->l('Symbol'), 'width' => 20, 'align' => 'center', 'orderby' => false, 'search' => false), - 'conversion_rate' => array('title' => $this->l('Conversion rate'), 'float' => true, 'align' => 'center', 'width' => 50, 'search' => false), - 'active' => array('title' => $this->l('Enabled'), 'width' => 25, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false), - ); - $this->_where = 'AND a.`deleted` = 0'; - - $this->optionsList = array( - 'general' => array( - 'title' => $this->l('Currencies options'), - 'fields' => array( - 'PS_CURRENCY_DEFAULT' => array( - 'title' => $this->l('Default currency:'), - 'desc' => $this->l('The default currency used in shop') - .'
'.$this->l('If you change default currency, you will have to manually edit every product price.').'