/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Writer
NameSizeModeActions
Excel5/-0755rm
Excel2007/-0755rm
OpenDocument/-0755rm
PDF/-0755rm
Abstract.php50700644editdlrm
CSV.php94260644editdlrm
Excel5.php408050644editdlrm
Excel2007.php219960644editdlrm
Exception.php15460644editdlrm
HTML.php594530644editdlrm
IWriter.php13480644editdlrm
OpenDocument.php65420644editdlrm
PDF.php32500644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Writer/PDF.php (3250B)
renderer = new $rendererName($phpExcel); } /** * Magic method to handle direct calls to the configured PDF renderer wrapper class. * * @param string $name Renderer library method name * @param mixed[] $arguments Array of arguments to pass to the renderer method * @return mixed Returned data from the PDF renderer wrapper method */ public function __call($name, $arguments) { if ($this->renderer === null) { throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined."); } return call_user_func_array(array($this->renderer, $name), $arguments); } /** * {@inheritdoc} */ public function save($pFilename = null) { $this->renderer->save($pFilename); } }