Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
asiafoodco.com /
shop /
classes /
pdf /
Delete
Unzip
Name
Size
Permission
Date
Action
HTMLTemplate.php
5.27
KB
-rwxr-x---
2018-05-03 14:19
HTMLTemplateDeliverySlip.php
3.14
KB
-rwxr-x---
2018-05-03 14:19
HTMLTemplateInvoice.php
5.03
KB
-rwxr-x---
2018-05-03 14:19
HTMLTemplateOrderReturn.php
2.97
KB
-rwxr-x---
2018-05-03 14:19
HTMLTemplateOrderSlip.php
8.36
KB
-rwxr-x---
2018-05-03 14:19
HTMLTemplateSupplyOrderForm.php
7.02
KB
-rwxr-x---
2018-05-03 14:19
PDF.php
2.9
KB
-rwxr-x---
2018-05-03 14:19
PDFGenerator.php
5.35
KB
-rwxr-x---
2018-05-03 14:19
index.php
1.24
KB
-rwxr-x---
2018-05-03 14:19
Save
Rename
<?php /* * 2007-2014 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-2014 PrestaShop SA * @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 */ class PDFCore { public $filename; public $pdf_renderer; public $objects; public $template; const TEMPLATE_INVOICE = 'Invoice'; const TEMPLATE_ORDER_RETURN = 'OrderReturn'; const TEMPLATE_ORDER_SLIP = 'OrderSlip'; const TEMPLATE_DELIVERY_SLIP = 'DeliverySlip'; const TEMPLATE_SUPPLY_ORDER_FORM = 'SupplyOrderForm'; public function __construct($objects, $template, $smarty) { $this->pdf_renderer = new PDFGenerator((bool)Configuration::get('PS_PDF_USE_CACHE')); $this->template = $template; $this->smarty = $smarty; $this->objects = $objects; if (!($objects instanceof Iterator) && !is_array($objects)) $this->objects = array($objects); } public function render($display = true) { $render = false; $this->pdf_renderer->setFontForLang(Context::getContext()->language->iso_code); foreach ($this->objects as $object) { $template = $this->getTemplateObject($object); if (!$template) continue; if (empty($this->filename)) { $this->filename = $template->getFilename(); if (count($this->objects) > 1) $this->filename = $template->getBulkFilename(); } $template->assignHookData($object); $this->pdf_renderer->createHeader($template->getHeader()); $this->pdf_renderer->createFooter($template->getFooter()); $this->pdf_renderer->createContent($template->getContent()); $this->pdf_renderer->writePage(); $render = true; unset($template); } if ($render) { // clean the output buffer if (ob_get_level() && ob_get_length() > 0) ob_clean(); return $this->pdf_renderer->render($this->filename, $display); } } public function getTemplateObject($object) { $class = false; $classname = 'HTMLTemplate'.$this->template; if (class_exists($classname)) { $class = new $classname($object, $this->smarty); if (!($class instanceof HTMLTemplate)) throw new PrestaShopException('Invalid class. It should be an instance of HTMLTemplate'); } return $class; } }