From: Alan Knowles Date: Tue, 21 May 2019 08:58:59 +0000 (+0800) Subject: SimpleExcel.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=b444ccfc21001536bac990bf84d0791104a220ad SimpleExcel.php --- diff --git a/SimpleExcel.php b/SimpleExcel.php index a6602642..d56dd558 100644 --- a/SimpleExcel.php +++ b/SimpleExcel.php @@ -429,6 +429,20 @@ class Pman_Core_SimpleExcel extends Pman function send($fname) { + + if (!empty($this->postRender)) { + foreach($this->postRender as $ar) { + if (is_a($ar[0], 'Closure')) { + $ar[0]($ar[1], $ar[2], $ar[3], $ar[4], $ar[5]); + } else { + // not sure if row is correct here...!!!? + call_user_func($ar[0],$ar[2], $ar[3], $ar[4], $ar[5]); + } + } + + } + + if (!empty($this->workbook)) { $this->workbook->close(); $this->workbook = false;