* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 8797 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @since 1.5 */ abstract class HTMLTemplateCore { public $title; public $date; public $address; public $available_in_your_account = true; public $smarty; /** * Returns the template's HTML header * @return string HTML header */ public function getHeader() { $this->smarty->assign(array( 'logo_path' => $this->getLogo(), 'img_ps_dir' => 'http://'.Tools::getMediaServer(_PS_IMG_)._PS_IMG_, 'img_update_time' => Configuration::get('PS_IMG_UPDATE_TIME'), 'title' => $this->title, 'date' => $this->date, 'shop_name' => Configuration::get('PS_SHOP_NAME') )); return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/header.tpl'); } /** * Returns the template's HTML footer * @return string HTML footer */ public function getFooter() { $shop_address = ''; if (isset($this->address) && $this->address instanceof Address) $shop_address = AddressFormat::generateAddress($this->address, array(), ' - ', ' '); $this->smarty->assign(array( 'available_in_your_account' => $this->available_in_your_account, 'shop_address' => $shop_address, 'shop_fax' => Configuration::get('PS_SHOP_FAX'), 'shop_phone' => Configuration::get('PS_SHOP_PHONE'), 'shop_details' => Configuration::get('PS_SHOP_DETAILS'), 'free_text' => Configuration::get('PS_INVOICE_FREE_TEXT') )); return $this->smarty->fetch(_PS_THEME_DIR_.'/pdf/footer.tpl'); } /** * Returns the invoice logo */ protected function getLogo() { $logo = ''; if (file_exists(_PS_IMG_DIR_.'logo_invoice.jpg')) $logo = _PS_IMG_.'logo_invoice.jpg'; else if (file_exists(_PS_IMG_DIR_.'logo.jpg')) $logo = _PS_IMG_.'logo.jpg'; return $logo; } /** * Assign hook data * * @param $object generally the object used in the constructor */ public function assignHookData($object) { $template = ucfirst(str_replace('HTMLTemplate', '', get_class($this))); $hook_name = 'displayPDF'.$template; $this->smarty->assign(array( 'HOOK_DISPLAY_PDF' => Hook::exec($hook_name, array('object' => $object)), )); } /** * Returns the template's HTML content * @return string HTML content */ abstract public function getContent(); /** * Returns the template filename * @return string filename */ abstract public function getFilename(); /** * Returns the template filename when using bulk rendering * @return string filename */ abstract public function getBulkFilename(); /** * Translatation method * @param string $string * @return string translated text */ protected static function l($string) { $iso = Context::getContext()->language->iso_code; if (!Validate::isLangIsoCode($iso)) die('Invalid iso lang ('.$iso.')'); if (@!include(_PS_THEME_DIR_.'pdf/'.$iso.'.php')) die('Cannot include PDF translation language file : '._PS_THEME_DIR_.'pdf/'.$iso.'.php'); if (!isset($_LANGPDF) OR !is_array($_LANGPDF)) return str_replace('"', '"', $string); $key = md5(str_replace('\'', '\\\'', $string)); $str = (key_exists('PDF_invoice'.$key, $_LANGPDF) ? $_LANGPDF['PDF_invoice'.$key] : $string); return $str; } }