• XLS Helper für cakePHP

    /** * By Cleiton Wasen * wasenbr at gmail.com * Based in http://www.appservnetwork.com/modules.php?name=News&file=article&sid=8 * */ class XlsHelper { var $helpers = array(); /** * set the header configuration * @param $filename the xls file name */ function setHeader($filename) { header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download");; header("Content-Disposition: attachment;filename=$filename"); [...]