setMimeEncoding('application/pdf'); $date = gmdate('D, d M Y H:i:s',time()).' GMT'; $document->setModifiedDate($date); header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); $modelSettings =& $this->getModel('settings'); $modelShippingBatchs =& $this->getModel('shippingbatchs'); $modelShippingBatchs->setModeListing(true); $batchs =& $modelShippingBatchs->getData(); if ($this->_layout == 'listing') { $pdf = new ExpeditionPDF(); $date = new JDate(); $date->setOffset(date('Z')/3600.0); $fechaS = $date->toFormat('%Y_%m_%d_%H_%M_%S'); $fileName = 'expList'.$fechaS.'.pdf'; $todayDate = JRequest::getVar('todayDate'); $pdf->generateListing($batchs,$todayDate); } $this->assignRef('fileName',$fileName); $this->assignRef('pdf',$pdf); parent::display($tpl); }// function }// class ?>