115 lines
3.6 KiB
PHP
Executable File
115 lines
3.6 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* 2007-2011 PrestaShop
|
|
*
|
|
* 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@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2011 PrestaShop SA
|
|
* @version Release: $Revision: 6594 $
|
|
* @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.'/tabs/AdminPreferences.php');
|
|
|
|
class AdminPDF extends AdminPreferences
|
|
{
|
|
public function __construct()
|
|
{
|
|
global $cookie;
|
|
|
|
$lang = strtoupper(Language::getIsoById($cookie->id_lang));
|
|
$this->className = 'Configuration';
|
|
$this->table = 'configuration';
|
|
|
|
/* Collect all font files and build array for combo box */
|
|
$fontFiles = scandir(_PS_FPDF_PATH_.'font');
|
|
$fontList = array();
|
|
$arr = array();
|
|
|
|
foreach ($fontFiles AS $file)
|
|
if (substr($file, -4) == '.php' AND $file != 'index.php' AND substr($file, -6) != 'bi.php' AND substr($file, -5) != 'b.php' AND substr($file, -5) != 'i.php')
|
|
{
|
|
$arr['mode'] = substr($file, 0, -4);
|
|
$arr['name'] = substr($file, 0, -4);
|
|
array_push($fontList, $arr);
|
|
}
|
|
|
|
/* Collect all encoding map files and build array for combo box */
|
|
$encodingFiles = scandir(_PS_FPDF_PATH_.'font/makefont');
|
|
$encodingList = array();
|
|
$arr = array();
|
|
foreach ($encodingFiles AS $file)
|
|
if (substr($file, -4) == '.map')
|
|
{
|
|
$arr['mode'] = substr($file, 0, -4);
|
|
$arr['name'] = substr($file, 0, -4);
|
|
array_push($encodingList, $arr);
|
|
}
|
|
|
|
$this->_fieldsPDF = array(
|
|
'PS_PDF_ENCODING' => array(
|
|
'title' => $this->l('Encoding:'),
|
|
'desc' => $this->l('Encoding for PDF invoice'),
|
|
'type' => 'selectLang',
|
|
'cast' => 'strval',
|
|
'identifier' => 'mode',
|
|
'list' => $encodingList),
|
|
'PS_PDF_FONT' => array(
|
|
'title' => $this->l('Font:'),
|
|
'desc' => $this->l('Font for PDF invoice'),
|
|
'type' => 'selectLang',
|
|
'cast' => 'strval',
|
|
'identifier' => 'mode',
|
|
'list' => $fontList)
|
|
);
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
|
|
public function postProcess()
|
|
{
|
|
if (isset($_POST['submitPDF'.$this->table]))
|
|
{
|
|
$fieldLangPDF = array();
|
|
$languages = Language::getLanguages(false);
|
|
foreach ($this->_fieldsPDF as $field => $fieldvalue)
|
|
foreach ($languages as $lang)
|
|
if (Tools::getValue($field.'_'.strtoupper($lang['iso_code'])))
|
|
$fieldLangPDF[$field.'_'.strtoupper($lang['iso_code'])] = array('type' => 'select', 'cast' => 'strval', 'identifier' => 'mode', 'list' => $fieldvalue['list']);
|
|
|
|
if ($this->tabAccess['edit'] === '1')
|
|
$this->_postConfig($fieldLangPDF);
|
|
else
|
|
$this->_errors[] = Tools::displayError('You do not have permission to edit here.');
|
|
}
|
|
}
|
|
|
|
public function display()
|
|
{
|
|
global $cookie;
|
|
|
|
$language = new Language((int)($cookie->id_lang));
|
|
if (!Validate::isLoadedObject($language))
|
|
die(Tools::displayError());
|
|
$this->_displayForm('PDF', $this->_fieldsPDF, $this->l('PDF settings for the current language:').' '.$language->name, 'width2', 'pdf');
|
|
}
|
|
}
|