1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| public function init()
{
// contextSwitch
$contextSwitch = $this->_helper->getHelper('contextSwitch');
$contextSwitch->setContext('pdf', array('suffix' => 'pdf',
'headers' => array('Content-Type' => 'application/pdf')));
$contextSwitch->setContext('csv', array('suffix' => 'csv',
'headers' => array('Content-Type' => 'text/csv; Charset=ISO-8859-15')));
$contextSwitch->setContext('txt', array('suffix' => 'txt',
'headers' => array('Content-Type' => 'text/plain; Charset=ISO-8859-15')));
$contextSwitch->setContext('png', array('suffix' => 'png',
'headers' => array('Content-Type' => 'image/png')));
$this->_contextSwitch = $contextSwitch;
} |