244 lines
6.4 KiB
PHP
244 lines
6.4 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*/
|
||
|
|
abstract class HTMLTemplateCore
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $title;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var bool
|
||
|
|
*/
|
||
|
|
public $available_in_your_account = true;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var Smarty
|
||
|
|
*/
|
||
|
|
public $smarty;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var Shop
|
||
|
|
*/
|
||
|
|
public $shop;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var Order|null
|
||
|
|
*/
|
||
|
|
public $order;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the template's HTML header.
|
||
|
|
*
|
||
|
|
* @return string HTML header
|
||
|
|
*/
|
||
|
|
public function getHeader()
|
||
|
|
{
|
||
|
|
$this->assignCommonHeaderData();
|
||
|
|
|
||
|
|
return $this->smarty->fetch($this->getTemplate('header'));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the template's HTML footer.
|
||
|
|
*
|
||
|
|
* @return string HTML footer
|
||
|
|
*/
|
||
|
|
public function getFooter()
|
||
|
|
{
|
||
|
|
$shop_address = $this->getShopAddress();
|
||
|
|
|
||
|
|
$id_shop = (int) $this->shop->id;
|
||
|
|
|
||
|
|
$this->smarty->assign([
|
||
|
|
'available_in_your_account' => $this->available_in_your_account,
|
||
|
|
'shop_address' => $shop_address,
|
||
|
|
'shop_fax' => Configuration::get('PS_SHOP_FAX', null, null, $id_shop),
|
||
|
|
'shop_phone' => Configuration::get('PS_SHOP_PHONE', null, null, $id_shop),
|
||
|
|
'shop_email' => Configuration::get('PS_SHOP_EMAIL', null, null, $id_shop),
|
||
|
|
'free_text' => Configuration::get('PS_INVOICE_FREE_TEXT', (int) Context::getContext()->language->id, null, $id_shop),
|
||
|
|
]);
|
||
|
|
|
||
|
|
return $this->smarty->fetch($this->getTemplate('footer'));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the shop address.
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
protected function getShopAddress()
|
||
|
|
{
|
||
|
|
return AddressFormat::generateAddress($this->shop->getAddress(), [], ' - ', ' ');
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the invoice logo.
|
||
|
|
*
|
||
|
|
* @return string|null
|
||
|
|
*/
|
||
|
|
protected function getLogo()
|
||
|
|
{
|
||
|
|
$id_shop = (int) $this->shop->id;
|
||
|
|
|
||
|
|
$invoiceLogo = Configuration::get('PS_LOGO_INVOICE', null, null, $id_shop);
|
||
|
|
if ($invoiceLogo && file_exists(_PS_IMG_DIR_ . $invoiceLogo)) {
|
||
|
|
return $invoiceLogo;
|
||
|
|
}
|
||
|
|
|
||
|
|
$logo = Configuration::get('PS_LOGO', null, null, $id_shop);
|
||
|
|
if ($logo && file_exists(_PS_IMG_DIR_ . $logo)) {
|
||
|
|
return $logo;
|
||
|
|
}
|
||
|
|
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Assign common header data to smarty variables.
|
||
|
|
*/
|
||
|
|
public function assignCommonHeaderData()
|
||
|
|
{
|
||
|
|
$this->setShopId();
|
||
|
|
$id_shop = (int) $this->shop->id;
|
||
|
|
$shop_name = Configuration::get('PS_SHOP_NAME', null, null, $id_shop);
|
||
|
|
|
||
|
|
$logo = $this->getLogo();
|
||
|
|
|
||
|
|
$width = 0;
|
||
|
|
$height = 0;
|
||
|
|
if (!empty($logo)) {
|
||
|
|
list($width, $height) = getimagesize(_PS_IMG_DIR_ . $logo);
|
||
|
|
}
|
||
|
|
|
||
|
|
// Limit the height of the logo for the PDF render
|
||
|
|
$maximum_height = 100;
|
||
|
|
if ($height > $maximum_height) {
|
||
|
|
$ratio = $maximum_height / $height;
|
||
|
|
$height *= $ratio;
|
||
|
|
$width *= $ratio;
|
||
|
|
}
|
||
|
|
|
||
|
|
$this->smarty->assign([
|
||
|
|
'logo_path' => Tools::getShopProtocol() . Tools::getMediaServer(_PS_IMG_) . _PS_IMG_ . $logo,
|
||
|
|
'img_ps_dir' => Tools::getShopProtocol() . Tools::getMediaServer(_PS_IMG_) . _PS_IMG_,
|
||
|
|
'img_update_time' => Configuration::get('PS_IMG_UPDATE_TIME'),
|
||
|
|
'date' => $this->date,
|
||
|
|
'title' => $this->title,
|
||
|
|
'shop_name' => $shop_name,
|
||
|
|
'shop_details' => Configuration::get('PS_SHOP_DETAILS', null, null, (int) $id_shop),
|
||
|
|
'width_logo' => $width,
|
||
|
|
'height_logo' => $height,
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Assign hook data.
|
||
|
|
*
|
||
|
|
* @param ObjectModel $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([
|
||
|
|
'HOOK_DISPLAY_PDF' => Hook::exec(
|
||
|
|
$hook_name,
|
||
|
|
[
|
||
|
|
'object' => $object,
|
||
|
|
// The smarty instance is a clone that does NOT escape HTML
|
||
|
|
'smarty' => $this->smarty,
|
||
|
|
]
|
||
|
|
),
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* If the template is not present in the theme directory, it will return the default template
|
||
|
|
* in _PS_PDF_DIR_ directory.
|
||
|
|
*
|
||
|
|
* @param string $template_name
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
protected function getTemplate($template_name)
|
||
|
|
{
|
||
|
|
$template = false;
|
||
|
|
$default_template = rtrim(_PS_PDF_DIR_, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $template_name . '.tpl';
|
||
|
|
$overridden_template = _PS_ALL_THEMES_DIR_ . $this->shop->theme->getName() . DIRECTORY_SEPARATOR . 'pdf' . DIRECTORY_SEPARATOR . $template_name . '.tpl';
|
||
|
|
if (file_exists($overridden_template)) {
|
||
|
|
$template = $overridden_template;
|
||
|
|
} elseif (file_exists($default_template)) {
|
||
|
|
$template = $default_template;
|
||
|
|
}
|
||
|
|
|
||
|
|
return $template;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Translation method.
|
||
|
|
*
|
||
|
|
* @param string $string
|
||
|
|
*
|
||
|
|
* @return string translated text
|
||
|
|
*/
|
||
|
|
protected static function l($string)
|
||
|
|
{
|
||
|
|
return Translate::getPdfTranslation($string);
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function setShopId()
|
||
|
|
{
|
||
|
|
if (isset($this->order) && Validate::isLoadedObject($this->order)) {
|
||
|
|
$id_shop = (int) $this->order->id_shop;
|
||
|
|
} else {
|
||
|
|
$id_shop = (int) Context::getContext()->shop->id;
|
||
|
|
}
|
||
|
|
|
||
|
|
$this->shop = new Shop($id_shop);
|
||
|
|
if (Validate::isLoadedObject($this->shop)) {
|
||
|
|
Shop::setContext(Shop::CONTEXT_SHOP, (int) $this->shop->id);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Returns the template's HTML pagination block.
|
||
|
|
*
|
||
|
|
* @return string HTML pagination block
|
||
|
|
*/
|
||
|
|
public function getPagination()
|
||
|
|
{
|
||
|
|
return $this->smarty->fetch($this->getTemplate('pagination'));
|
||
|
|
}
|
||
|
|
}
|